We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Backend would replace the settings object. we would have a default implementation for a django backend and in the future possibly other orm's.
The backed should look like this:
class GqlAuthUserProto: def get_pk_field(): ... # possibly other things class GqlAuthBackend(Protocol): def get_user_type(self) -> GqlAuthUserProto: ... def login(data: TBD ) -> GqlAuthUserProto: ... # TBD
This will allow users to extend this library how ever they would want without a pile of settings.
This issue should solve
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Backend would replace the settings object.
we would have a default implementation for a django backend and in the future possibly other orm's.
The backed should look like this:
This will allow users to extend this library how ever they would want without a pile of settings.
This issue should solve
The text was updated successfully, but these errors were encountered: