From: richard Date: Mon, 7 Dec 2009 05:08:34 +0000 (+0000) Subject: add another simple recipe X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=e020ff9c8db32eaf80c809545e4d648c21d1c963;p=roundup.git add another simple recipe git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/roundup/trunk@4404 57a73879-2fb5-44c3-a270-3262357dd7e2 --- diff --git a/doc/customizing.txt b/doc/customizing.txt index 8ac8911..8c69ba7 100644 --- a/doc/customizing.txt +++ b/doc/customizing.txt @@ -4606,6 +4606,22 @@ for the "issue", "file" and "msg" classes with the following:: 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 ---------------------------------