[rt-users] How to adjust 'Organization' in 'About me'

Thomas Sibley trs at bestpractical.com
Wed Feb 8 10:45:59 EST 2012


On 02/08/2012 10:32 AM, Jeffery, Guy wrote:
> That's brilliant, cheers, I can remove the admin component on the
> Organization field in User_Overlay.pm.

Better yet, modify the accessible properties in your own
/opt/rt3/local/lib/RT/User_Local.pm file:

package RT::User;
use strict;
use warnings;

sub _LocalAccessible {
    {
        Organization => { admin => 0 },
    }
}

# Required to work around a 3.8 quirk
__PACKAGE__->_BuildTableAttributes;

1;



More information about the rt-users mailing list