Page 1 of 1
Admin user(s) in every project?
Posted: 29 Mar 2005, 14:02
by adium
Is there a hack to prevent admin users from being member in every project? I'd like to offer mantis for some projects that i'm not really part of.
Organisation
Posted: 30 Mar 2005, 10:32
by mikewhit
Then "you" personally should not be a member of the project.
But surely "being" the admin user is like to "being" root under Unix systems - you should not use it as your workday login, but only when performing some task that requires the privilege, such as creating a project.
Posted: 30 Mar 2005, 13:26
by Guest
I guess the easiest way to do this is:
Demote all admin users' global status to manager for example.
mysql> update mantis_user_table set access_level = 70 where access_level = 90;
And if you need to do some admin things later on, just give admin access back:
mysql> update mantis_user_table set access_level = 70 where id = XX;
(where XX = user's id, who you want to give admin permission)