Skip to content
Snippets Groups Projects
Commit fb8901b6 authored by edgrif's avatar edgrif
Browse files

File to hold all RT scrips we have for our RT queues.

parent 6f6555a0
No related branches found
No related tags found
No related merge requests found
#
# A collection of any scrips we use for RT
#
my $cf_urgency = RT::CustomField->new( $RT::SystemUser );
$cf_urgency->LoadByName( Name => 'Urgency' );
my $cf_import = RT::CustomField->new( $RT::SystemUser );
$cf_import->LoadByName( Name => 'Importance' );
$self->TicketObj->AddCustomFieldValue( Field => $cf_urgency, Value => 'Urgent' );
$self->TicketObj->AddCustomFieldValue( Field => $cf_import, Value => 'Important' );
return 1;
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment