lemonldap-ng/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Main/Auth.pm

17 lines
217 B
Perl
Raw Normal View History

2018-02-19 22:11:43 +01:00
package Lemonldap::NG::Portal::Main::Auth;
2016-03-31 22:08:43 +02:00
use strict;
use Mouse;
2022-07-28 12:42:15 +02:00
our $VERSION = '2.0.15';
2016-03-31 22:08:43 +02:00
extends 'Lemonldap::NG::Portal::Main::Plugin';
2016-03-31 22:08:43 +02:00
2016-06-09 20:40:20 +02:00
# PROPERTIES
2016-04-03 08:33:50 +02:00
has authnLevel => ( is => 'rw' );
2016-03-31 22:08:43 +02:00
2022-06-20 00:10:57 +02:00
sub stop { return 0 }
2016-03-31 22:08:43 +02:00
1;