CustomFieldRightsWithoutSeeQueue

From Request Tracker Wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

This is useful if you have a custom ticket creation form which includes CustomFields and you want people who have CreateTicket rights without SeeQueue rights to be able to create tickets.

In your form, add this:


<%INIT>
my $QueueObj = new RT::Queue( $RT::SystemUser );
$QueueObj->Load($Queue) || Abort(loc("Queue could not be loaded."));
...
</%INIT>

% if (  $session{ 'CurrentUser' }->HasRight( Right => 'CreateTicket', Object => $QueueObj ) ) {
%     ...
% }

Credit to RuslanZakirov for this solution.