From 8f19ff804e1fe93fa26a7f9f8c4beb94167671a4 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Pasquier <contact@jbpasquier.eu> Date: Thu, 24 Oct 2019 16:44:26 +0200 Subject: [PATCH] fix: owner permissions --- djangoldp_circle/models.py | 1 + 1 file changed, 1 insertion(+) diff --git a/djangoldp_circle/models.py b/djangoldp_circle/models.py index 3209ca9..563f7b3 100644 --- a/djangoldp_circle/models.py +++ b/djangoldp_circle/models.py @@ -15,6 +15,7 @@ class Circle(Model): class Meta: auto_author = 'owner' + owner_field = 'owner' nested_fields = ["team", 'members'] anonymous_perms = ["view"] authenticated_perms = ["inherit", "add"] -- GitLab