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.replace_own
We need to implement a users.patch RPC function to replace the POST /api/ui/v0/users/password_change/ endpoint.
users.patch
POST /api/ui/v0/users/password_change/
The function signature should be:
@rpc_method(name='users.password.replace_own') @http_basic_auth_login_required @handle_rpc_exceptions def replace_own( *, user_id: int, old_password: str, new_password: str, **kwargs ) -> None:
A user can only use this function to modify their own password.
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.patch
RPC function to replace thePOST /api/ui/v0/users/password_change/
endpoint.The function signature should be:
A user can only use this function to modify their own password.
See the wiki for more context.
The text was updated successfully, but these errors were encountered: