[rt-users] Access to Userlist

Ruslan U. Zakirov Ruslan.Zakirov at acronis.com
Wed Oct 13 08:12:01 EDT 2004


Eric Rescorla wrote:
> Here's a related question:
> I'm running RT 3.0.6 (yeah, yeah, I know) and when a privileged
> user clicks on the Users tab they get the list of other users,
> which is pretty undesirable. Is there some way to suppress that?
Open
/opt/rt3/share/html/Admin/Users/index.html

and add next lines just after "<%INIT>" string
return unless(
	$session{'CurrentUser'}->HasRight(
			Right => 'AdminUsers',
			Object => $RT::System )
		);

After that all users who don't have global right AdminUsers would see 
only blank content instead of users list.

See also:
http://wiki.bestpractical.com/index.cgi?HideConfigurationTab

> 
> -Ekr




More information about the rt-users mailing list