Mercurial > p > roundup > code
diff doc/upgrading.txt @ 7132:c087ad45bf4d
update Anonymous Create user to Register user permissions
the devel and responsive tracker templates still had the old Create
user permissions for the anonymous user. Replace with the Regiter
permission that has been the standard since 1.4.11 maybe.
Also update references to Create permission in comment for the Email
Access permission for anon user.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Thu, 02 Feb 2023 12:55:27 -0500 |
| parents | 849e9b2d6926 |
| children | 7109cdf8fef4 |
line wrap: on
line diff
--- a/doc/upgrading.txt Mon Jan 30 12:23:02 2023 -0500 +++ b/doc/upgrading.txt Thu Feb 02 12:55:27 2023 -0500 @@ -66,8 +66,8 @@ ``config.ini`` to ``newconfig.ini`` and replace ``config.ini`` with ``newconfig.ini``. -Using the roundup-mailgw script -------------------------------- +Using the roundup-mailgw script (required) +------------------------------------------ In previous versions the roundup-mailgw script had a ``-C`` (or ``--class``) option for specifying a class to be used with ``-S`` (or @@ -96,6 +96,24 @@ If you do not use the ``-C`` (or ``--class``) option in your current setup of mailgw you don't need to change anything. +Replace Create User permission for Anonymous with Register (required) +--------------------------------------------------------------------- + +Check your trackers schema.py. If you have the following code:: + + db.security.addPermissionToRole('Anonymous', 'Create', 'user') + +after the permission for Anonymous 'Email Access', change it to:: + + db.security.addPermissionToRole('Anonymous', 'Register', 'user') + +The comment for Anonymous 'Email Access' may refer to Create. Change +it to refer to Register. + +This will be an issue if you used the devel or responsive tracker +templates. If you used a classic, minimal or jinja2 template the +permission change (but not the comment change) should be done already. + Rdbms version change from 7 to 8 (required) -------------------------------------------
