Mercurial > p > roundup > code
changeset 4300:608919e3bbbf
add another simple recipe
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Mon, 07 Dec 2009 05:08:34 +0000 |
| parents | e16a1131ba67 |
| children | d47245c2530a |
| files | doc/customizing.txt |
| diffstat | 1 files changed, 16 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/doc/customizing.txt Mon Dec 07 00:33:39 2009 +0000 +++ b/doc/customizing.txt Mon Dec 07 05:08:34 2009 +0000 @@ -4606,6 +4606,22 @@ db.security.addPermissionToRole('User', 'Create', cl) +Moderating user registration +~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +You could set up new-user moderation in a public tracker by: + +1. creating a new highly-restricted user role "Pending", +2. set the config new_web_user_roles and/or new_email_user_roles to that + role, +3. have an auditor that emails you when new users are created with that + role using roundup.mailer +4. edit the role to "User" for valid users. + +Some simple javascript might help in the last step. If you have high volume +you could search for all currently-Pending users and do a bulk edit of all +their roles at once (again probably with some simple javascript help). + Changes to the Web User Interface ---------------------------------
