From 734d8279b67a639bedfeb49deaff52abb10336ba Mon Sep 17 00:00:00 2001 From: Jean-Baptiste <bleme@pm.me> Date: Thu, 24 Jan 2019 10:46:02 +0100 Subject: [PATCH] syntax: Explicit AnonymousReadOnly permission --- djangoldp_profile/models.py | 1 + djangoldp_profile/urls.py | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/djangoldp_profile/models.py b/djangoldp_profile/models.py index 85c5080..b7fe595 100644 --- a/djangoldp_profile/models.py +++ b/djangoldp_profile/models.py @@ -14,6 +14,7 @@ class Profile(models.Model): website = models.URLField(blank=True) class Meta: + auto_author = 'user' permissions = ( ('view_member', 'Read'), ('control_member', 'Control'), diff --git a/djangoldp_profile/urls.py b/djangoldp_profile/urls.py index 709cb16..c143d96 100644 --- a/djangoldp_profile/urls.py +++ b/djangoldp_profile/urls.py @@ -1,8 +1,10 @@ """djangoldp profile URL Configuration""" from django.conf.urls import url, include + +from djangoldp.permissions import AnonymousReadOnly from djangoldp.views import LDPViewSet from .models import Profile urlpatterns = [ - url(r'^members/', LDPViewSet.urls(model=Profile, permission_classes=())), + url(r'^members/', LDPViewSet.urls(model=Profile, permission_classes=[AnonymousReadOnly])), ] -- GitLab