Add default stop() method for all Auth modules

This commit is contained in:
Yadd 2022-02-02 11:38:01 +01:00
parent 0df2d6dd30
commit 00bf4a0d1a
1 changed files with 3 additions and 1 deletions

View File

@ -3,7 +3,7 @@ package Lemonldap::NG::Portal::Main::Auth;
use strict;
use Mouse;
our $VERSION = '2.0.0';
our $VERSION = '2.0.14';
extends 'Lemonldap::NG::Portal::Main::Plugin';
@ -11,4 +11,6 @@ extends 'Lemonldap::NG::Portal::Main::Plugin';
has authnLevel => ( is => 'rw' );
sub stop {0}
1;