12 lines
333 B
Perl
12 lines
333 B
Perl
#!/usr/bin/env perl
|
|
|
|
@ScripActions = (
|
|
{ Name => 'Add a Comment',
|
|
Description => 'Add a comment to the ticket',
|
|
ExecModule => 'RecordComment',
|
|
},
|
|
{ Name => 'Add Correspondence',
|
|
Description => 'Add correspondence to the ticket',
|
|
ExecModule => 'RecordCorrespondence',
|
|
},
|
|
);
|