RT-Extension-Conservancy/lib/RT/Action/NotifyOwnerOrQueueAdminCcsAsComment.pm

15 lines
257 B
Perl

package RT::Action::NotifyOwnerOrQueueAdminCcsAsComment;
use strict;
use warnings;
use RT::Action::NotifyAsComment;
use mro "c3";
use base qw(
RT::Action::NotifyOwnerOrQueueAdminCcs
RT::Action::NotifyAsComment
);
RT::Base->_ImportOverlays();
1;