Class PermissionsMixin
Add the fields and methods necessary to support the Group and Permission models using the ModelBackend.
Declaration
source linkDocumentation
Methods
▷ def get_group_permissions(self, obj=None) Return a list of permission strings that this user has through their groups. Query all available auth backends. If an object is passed in, return only permissions matching this object.
▷ def get_user_permissions(self, obj=None) Return a list of permission strings that this user has directly. Query all available auth backends. If an object is passed in, return only permissions matching this object.
▷ def has_module_perms(self, app_label) Return True if the user has any permissions in the given app label. Use similar logic as has_perm(), above.
▶ def has_perm(self, perm, obj=None) Return True if the user has the specified permission. Query all
available auth backends, but return immediately if any backend returns
True. Thus, a user who has permission from a single auth backend is
assumed to have permission in general. If an object is provided, check
permissions for that object.
▷ def has_perms(self, perm_list, obj=None) Return True if the user has each of the specified permissions. If object is passed, check if the user has all required perms for it.