upgrade: Add actions for adding correspondence/comments.
I don't know why this doesn't ship with RT…
This commit is contained in:
parent
43e51ac66c
commit
325c5ceaf6
2 changed files with 13 additions and 1 deletions
12
etc/upgrade/0.4/content
Normal file
12
etc/upgrade/0.4/content
Normal 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',
|
||||
},
|
||||
);
|
|
@ -2,7 +2,7 @@ use strict;
|
|||
use warnings;
|
||||
package RT::Extension::Conservancy;
|
||||
|
||||
our $VERSION = '0.3';
|
||||
our $VERSION = '0.4';
|
||||
|
||||
=pod
|
||||
|
||||
|
|
Loading…
Reference in a new issue