浏览代码

fix notification upon comments

Markos Gogoulos 4 年之前
父节点
当前提交
e6361cecb1
共有 2 个文件被更改,包括 3 次插入3 次删除
  1. 2 2
      files/methods.py
  2. 1 1
      files/views.py

+ 2 - 2
files/methods.py

@@ -173,7 +173,7 @@ Media becomes private if it gets reported %s times %s\n
             d = {}
             d["title"] = title
             d["msg"] = msg
-            d["to"] = media.user.email
+            d["to"] = [media.user.email]
             notify_items.append(d)
 
     if action == "media_added" and media:
@@ -211,7 +211,7 @@ URL: %s
             msg = f"A comment was added on media {media_url}\n"
             d["title"] = title
             d["msg"] = msg
-            d["to"] = media.user.username
+            d["to"] = [media.user.username]
             notify_items.append(d)
 
     for item in notify_items:

+ 1 - 1
files/views.py

@@ -1112,7 +1112,7 @@ class CommentDetail(APIView):
     Delete comment (DELETE)
     """
 
-    permission_classes = (permissions.IsAuthenticatedOrReadOnly, IsUserOrEditor)
+    permission_classes = (IsAuthorizedToAdd,)
     parser_classes = (JSONParser, MultiPartParser, FormParser, FileUploadParser)
 
     def get_object(self, friendly_token):