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.get
We need to implement a users.get RPC function to replace the GET /api/ui/v0/users/{userId}/ endpoint.
GET /api/ui/v0/users/{userId}/
The function signature should be:
@rpc_method(name='users.get') @http_basic_auth_login_required @handle_rpc_exceptions def get( *, user_id: int, ) -> UserInfo:
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.get
RPC function to replace theGET /api/ui/v0/users/{userId}/
endpoint.The function signature should be:
See the wiki for more context.
The text was updated successfully, but these errors were encountered: