Skip to content
Snippets Groups Projects
Commit c150edd0 authored by Calum Mackervoy's avatar Calum Mackervoy Committed by Benoit Alessandroni
Browse files

update: changed default anonymous permissions to none

parent 6fc79778
No related branches found
Tags v0.5.125
1 merge request!94update: changed default anonymous permissions to none
Pipeline #11921 passed
......@@ -87,8 +87,8 @@ class LDPUser(AbstractUser, Model):
nested_fields = user_nested_fields
serializer_fields = s_fields
empty_containers = user_empty_containers
anonymous_perms = getattr(settings, 'USER_ANONYMOUS_PERMISSIONS', ['view'])
authenticated_perms = getattr(settings, 'USER_AUTHENTICATED_PERMISSIONS', ['inherit'])
anonymous_perms = getattr(settings, 'USER_ANONYMOUS_PERMISSIONS', [])
authenticated_perms = getattr(settings, 'USER_AUTHENTICATED_PERMISSIONS', ['inherit', 'view'])
owner_perms = getattr(settings, 'USER_OWNER_PERMISSIONS', ['inherit'])
def name(self):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment