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

23 lines
341 B
Perl
Raw Normal View History

2016-06-06 22:49:59 +02:00
package Lemonldap::NG::Portal::Auth::Proxy;
use strict;
use Mouse;
use Lemonldap::NG::Portal::Main::Constants qw(PE_OK);
our $VERSION = '2.0.0';
extends 'Lemonldap::NG::Portal::Auth::_WebForm',
'Lemonldap::NG::Portal::Lib::Proxy';
2016-06-09 20:40:20 +02:00
# RUNNING METHODS
2016-06-06 22:49:59 +02:00
sub authLogout {
PE_OK;
}
sub getDisplayType {
return "standardform";
}
1;