Users
Definition of /auth/users/ routes
| FUNCTION | DESCRIPTION |
|---|---|
list_users |
Return list of all users |
patch_user |
Custom version of the PATCH-user route from |
Attributes¶
Classes¶
Functions:¶
list_users(profile_id=None, user=Depends(current_superuser_act), db=Depends(get_async_db))
async
¶
Return list of all users
Source code in fractal_server/app/routes/auth/users.py
patch_user(user_id, user_update, current_superuser=Depends(current_superuser_act), user_manager=Depends(get_user_manager), db=Depends(get_async_db))
async
¶
Custom version of the PATCH-user route from fastapi-users.