Hi, I’m looking into making SelfService available to a limited set of users.
there’s a page OnCreateSetDeptHeadCc - Request Tracker Wiki … but… a bit of digging looks like this is now “Core” in RT5… for example:
/opt/rt5/share/html/SelfService/Elements/
contains MyGroupRequests:
unless ( RT->Config->Get('SelfServiceShowGroupTickets')
and $session{'CurrentUser'}->HasRight(Right => 'SeeSelfServiceGroupTicket', Object => $RT::System) ){
return;
and in Admin, I can set:
Global-> (Group)->SeeSelfServiceGroupTicket
and:
Global->UserRights->(userXX)->SeeSelfServiceGroupTicket
and my test user is in the group that can access the queue that I’ve setup for testing.
and I’ve also updated RT_SiteConfig.pm
SelfServiceShowGroupTickets 1
and webgui confirms that variable is set.
My Self Service portal Now has a heading: “My group’s tickets”
but: there are no tickets in there. The group that I’m part of has permission to create/reply/watch/seequeue/showticket etc… is there something else that I need here?
Thank you,
Chris