upgrade: Add actions for adding correspondence/comments.

I don't know why this doesn't ship with RT…
This commit is contained in:
Brett Smith 2018-04-19 10:27:30 -04:00
parent 43e51ac66c
commit 325c5ceaf6
2 changed files with 13 additions and 1 deletions

12
etc/upgrade/0.4/content Normal file
View file

@ -0,0 +1,12 @@
#!/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',
},
);

View file

@ -2,7 +2,7 @@ use strict;
use warnings; use warnings;
package RT::Extension::Conservancy; package RT::Extension::Conservancy;
our $VERSION = '0.3'; our $VERSION = '0.4';
=pod =pod