-
Notifications
You must be signed in to change notification settings - Fork 55
Open
Description
this is my controller
@api_controller("users/", tags=["Users"])
class UserController(BaseController):
model = get_user_model()
@http_post(
path="",
response={
HTTPStatus.CREATED: UserSchema,
HTTPStatus.INTERNAL_SERVER_ERROR: ErrorSchema,
HTTPStatus.BAD_REQUEST: ErrorSchema,
},
# permissions=[AdminPermission],
summary="Create Center User",
description="This endpoint creates a new center user based on the provided data.",
url_name="create_center_user"
)
def create(self, payload: UserInSchema):
try:
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels