<%args>
$CustomFields => undef
$TicketObj => undef
$QueueObj => undef
</%args>
<%init>
my $queue = $QueueObj || $TicketObj->QueueObj;
return unless RT::IR->OurQueue( $queue );

# We never want to see the RTIR's custom field Constituency in the edity ui
$CustomFields->_OpenParen('RTIR');
$CustomFields->Limit( SUBCLAUSE => 'RTIR', ENTRYAGGREGATOR => 'AND', FIELD => 'Name', OPERATOR => '!=', VALUE => 'Constituency');
$CustomFields->_CloseParen('RTIR');
</%init>
