Extend PSGI::Router to call handlerAbort (#2148)

This commit is contained in:
Christophe Maudoux 2020-04-15 00:31:49 +02:00
parent 8afbd2214d
commit 47842033dc

View File

@ -13,8 +13,11 @@ require Lemonldap::NG::Common::Notifications;
use feature 'state';
extends 'Lemonldap::NG::Manager::Plugin',
'Lemonldap::NG::Common::Conf::AccessLib';
extends qw(
Lemonldap::NG::Manager::Plugin
Lemonldap::NG::Common::Conf::AccessLib
Lemonldap::NG::Common::PSGI::Router
);
our $VERSION = '2.0.8';
@ -271,7 +274,7 @@ sub newNotification {
return $self->sendError( $req, undef, 200 );
}
$json->{reference} =~ s/_/-/g; # Remove underscores (#2135)
$json->{reference} =~ s/_/-/g; # Remove underscores (#2135)
foreach my $r (qw(uid reference xml)) {
return $self->sendError( $req, "Missing $r", 200 )