Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Using comments in multi site environments #139

Open
jcuotpc opened this issue Jan 18, 2019 · 0 comments
Open

Using comments in multi site environments #139

jcuotpc opened this issue Jan 18, 2019 · 0 comments

Comments

@jcuotpc
Copy link

jcuotpc commented Jan 18, 2019

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?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant