Admin user(s) in every project?

Get help from other users here.

Moderators: Developer, Contributor

Post Reply
adium

Admin user(s) in every project?

Post 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.
mikewhit
Posts: 20
Joined: 18 Feb 2005, 10:40
Location: Shropshire UK

Organisation

Post 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.
Guest

Post 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)
Post Reply