Tyler Kennedy
Tyler Kennedy
Ah, I had a PR for this. I was using the domain from the user's first identity which I was considering the "default". Essentially, I'm "white labeling" this for family...
Yeah, the process right now is to create the domain, create a user, add an identity, then send them a password reset (since invites aren't there just yet)
I agree with you for the general use case, so how about as a compile-time flag that is disabled by default? My example use case is a VSCode linter. In...
If you don't have a preference for how this is done, I'm happy to take a stab at a proof-of-concept PR.
No rush mate, you don't owe anyone anything:)
For certain benchmarks, especially those that are string-heavy, this version is now roughly 45% faster. ``` ---------------------------------------------------------------------- benchmark 'Complete load of data/twitter.json': 2 tests ----------------------------------------------------------------------- Name (time in us) Min...
Thanks for the feedback @edgarsi, appreciate it. > With the new changes you destroy this feature. Now at_pointer constructs the Python objects forcefully. This PR won't be merged until it's...
This is still desperately needed for tool builders. A character should be able to see all contracts via the API that they can see in game. It's not reasonable to...
If it's not following redirects, the same view can be served with-and-without the / by changing: ```python path("oauth/authorize", oauth.AuthorizationView.as_view()) ``` to something like ```python re_path(r"oauth/authorize/?$", oauth.AuthorizationView.as_view()) ``` in https://github.com/jointakahe/takahe/blob/7c34ac78eddc54f8d1918d36c8baf822a104ffbb/takahe/urls.py#L347C1-L347C2
Django does not support database schemas. The search path option is getting passed into the database driver, but doesn't actually change anything in django when it has to explicitly provide...