diff --git a/djangoldp_notification/models.py b/djangoldp_notification/models.py
index ce64bbd06d938f8b3308292d39c5feb7d5711fd6..8b719edf2bd674450a373c460e66162f46b68fa2 100644
--- a/djangoldp_notification/models.py
+++ b/djangoldp_notification/models.py
@@ -30,8 +30,10 @@ class Notification(Model):
 
     class Meta(Model.Meta):
         #permission_classes = [InboxPermissions]
-        depth = 0
+        auto_author = 'user'
         ordering = ['-date']
+        anonymous_perms = ['add']
+        owner_perms = ['view', 'change']
 
     def __str__(self):
         return '{}'.format(self.type)