Skip to content

Using comments in multi site environments #139

@jcuotpc

Description

@jcuotpc

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?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions