You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using a Django multi-site with different sets of users for every site. Django comments moderation requests should be sent to a moderator designated for a particular site, not to the MANAGERS list set up in the settings.
The CommentModerator class has the following method:
def email(self, comment, content_object, request):
[...]
recipient_list = [manager_tuple[1] for manager_tuple in settings.MANAGERS]
[...]
I think that a more generic recipient_list would be more helpful.
I would like to make the comments app be site aware:
allow different sites display their specific comments only.
every site to have a designated moderator.
Is there a plan or interese to implement this enhancement?
The text was updated successfully, but these errors were encountered:
I am using a Django multi-site with different sets of users for every site. Django comments moderation requests should be sent to a moderator designated for a particular site, not to the MANAGERS list set up in the settings.
The
CommentModerator
class has the following method:I think that a more generic recipient_list would be more helpful.
I would like to make the comments app be site aware:
Is there a plan or interese to implement this enhancement?
The text was updated successfully, but these errors were encountered: