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
users.password.revoke
We need to implement a users.password.revoke RPC function to replace the POST /api/ui/v0/users/{userId}/password_reset/ endpoint.
POST /api/ui/v0/users/{userId}/password_reset/
The function signature should be:
@rpc_method(name='users.password.revoke') @http_basic_auth_superuser_required @handle_rpc_exceptions def revoke( *, user_id: int, password: str, ) -> None:
See the wiki for more context.
The text was updated successfully, but these errors were encountered:
User
No branches or pull requests
We need to implement a
users.password.revoke
RPC function to replace thePOST /api/ui/v0/users/{userId}/password_reset/
endpoint.The function signature should be:
See the wiki for more context.
The text was updated successfully, but these errors were encountered: