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

17 lines
210 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;
our $VERSION = '2.0.14';
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-02-16 17:43:29 +01:00
sub stop { 0 }
2016-03-31 22:08:43 +02:00
1;