User
User views for smarter api.
- class smarter.apps.account.api.v1.views.user.UserListView(*args, **kwargs)[source]
Bases:
AccountListViewBaseUser list view for smarter api.
- get_queryset()[source]
Get the list of items for this view. This must be an iterable, and may be a queryset. Defaults to using self.queryset.
This method should always be used rather than accessing self.queryset directly, as self.queryset gets evaluated only once, and those results are cached for all subsequent requests.
You may want to override this if you need to provide different querysets depending on the incoming request.
(Eg. return a list of items that is specific to the user)
- serializer_class
alias of
UserSerializer
- class smarter.apps.account.api.v1.views.user.UserView(*args, **kwargs)[source]
Bases:
AccountViewBaseUser view for smarter api.
- smarter.apps.account.api.v1.views.user.create_user(request)[source]
Create an account from a json representation in the body of the request.
- smarter.apps.account.api.v1.views.user.delete_user(request, user_id=None)[source]
delete a user by id.
- smarter.apps.account.api.v1.views.user.eval_permissions(request, user_to_update, user_to_update_profile=None)[source]
- smarter.apps.account.api.v1.views.user.get_user(request, user_id=None)[source]
Get an account json representation by id.
- smarter.apps.account.api.v1.views.user.get_user_for_operation(request)[source]
- Return type:
tuple[User,UserProfile] |JsonResponse
- smarter.apps.account.api.v1.views.user.should_log(level)[source]
Check if logging should be done based on the waffle switch.