- add: Move revisions from one version tag to another
- add: Delete multiple revisions from a version tag at the same time
- add: Approval activities now have a better parent class and more
flexibility (multiple groups to approve, do on approve)
- fix: weirdness in upgrade file
This commit is contained in:
parent
ca9278190e
commit
ab0b1b2200
10 changed files with 640 additions and 198 deletions
|
|
@ -60,6 +60,10 @@
|
|||
- fixed: Thingy: Problem with add_url tmpl_var permissions
|
||||
- fixed: WeatherData asset is broken
|
||||
- fixed: Calendar multi-day events exported wrong in ical feed
|
||||
- add: Move revisions from one version tag to another
|
||||
- add: Delete multiple revisions from a version tag at the same time
|
||||
- add: Approval activities now have a better parent class and more
|
||||
flexibility (multiple groups to approve, do on approve)
|
||||
|
||||
7.5.10
|
||||
- fix: Syntax error in GetCsMail
|
||||
|
|
|
|||
|
|
@ -201,6 +201,13 @@ sub addPurgeOldInboxActivity {
|
|||
my $session = shift;
|
||||
print "\tAdding Purge Old Inbox Messages workflow activity... " unless $quiet;
|
||||
|
||||
my $activity = $session->config->get( "workflowActivities" );
|
||||
push @{ $activity->{"None"} }, 'WebGUI::Workflow::Activity::PurgeOldInboxMessages';
|
||||
$session->config->set( "workflowActivities", $activity );
|
||||
|
||||
print "DONE!\n" unless $quiet;
|
||||
}
|
||||
|
||||
#-------------------------------------------------
|
||||
sub addingInStoreCredit {
|
||||
my $session = shift;
|
||||
|
|
@ -215,13 +222,6 @@ sub addingInStoreCredit {
|
|||
)");
|
||||
}
|
||||
|
||||
my $activity = $session->config->get( "workflowActivities" );
|
||||
push @{ $activity->{"None"} }, 'WebGUI::Workflow::Activity::PurgeOldInboxMessages';
|
||||
$session->config->set( "workflowActivities", $activity );
|
||||
|
||||
print "DONE!\n" unless $quiet;
|
||||
}
|
||||
|
||||
#-------------------------------------------------
|
||||
sub upgradeEMS {
|
||||
my $session = shift;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue