django / django-contrib-comments

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Using comments in multi site environments

jcuotpc opened this issue · comments

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?