fix notification upon comments
This commit is contained in:
parent
969d8a0eac
commit
e6361cecb1
2 changed files with 3 additions and 3 deletions
|
@ -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:
|
||||
|
|
|
@ -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):
|
||||
|
|
Loading…
Add table
Reference in a new issue