From db2394b8c0beba5f4323dffe2d20adad1c5acf2b Mon Sep 17 00:00:00 2001 From: dakkar Date: Mon, 29 Apr 2019 15:42:32 +0100 Subject: actually fix the cmd line problem --- lib/Sietima/Role/SubscriberOnly/Moderate.pm | 41 ++++++++++++++++++++++++----- 1 file changed, 35 insertions(+), 6 deletions(-) (limited to 'lib/Sietima/Role/SubscriberOnly/Moderate.pm') diff --git a/lib/Sietima/Role/SubscriberOnly/Moderate.pm b/lib/Sietima/Role/SubscriberOnly/Moderate.pm index c4d62c9..e7fbb7b 100644 --- a/lib/Sietima/Role/SubscriberOnly/Moderate.pm +++ b/lib/Sietima/Role/SubscriberOnly/Moderate.pm @@ -147,6 +147,39 @@ sub show_mail_from_moderation_queue ($self,$runner,@) { $runner->out($mail->as_string =~ s{\r\n}{\n}gr); } +=method C + + $sietima->resume_mail_from_moderation_queue($sietima_runner); + +This method L +of the message requested from the command line, and L +it. + +This method is usually invoked from the command line, see L<< +/C >>. + +=cut + +sub resume_mail_from_moderation_queue ($self,$runner,@) { + $self->resume($runner->parameters->{'mail-id'}); +} + +=method C + + $sietima->drop_mail_from_moderation_queue($sietima_runner); + +This method L +of the message requested from the command line, and L it. + +This method is usually invoked from the command line, see L<< +/C >>. + +=cut + +sub drop_mail_from_moderation_queue ($self,$runner,@) { + $self->drop($runner->parameters->{'mail-id'}); +} + =modif C This method adds the following sub-commands for the command line: @@ -219,15 +252,11 @@ around command_line_spec => sub ($orig,$self) { $etc->('show'), }; $spec->{subcommands}{'resume-held'} = { - op => sub ($self,$runner,$args) { - $self->resume($runner->parameters->{'mail-id'}); - }, + op => 'resume_mail_from_moderation_queue', $etc->('resume'), }; $spec->{subcommands}{'drop-held'} = { - op => sub ($self,$runner,$args) { - $self->drop($runner->parameters->{'mail-id'}); - }, + op => 'drop_mail_from_moderation_queue', $etc->('drop'), }; -- cgit v1.2.3