lemonldap-ng/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/Custom.pm
2017-03-07 17:28:09 +00:00

14 lines
278 B
Perl

package Lemonldap::NG::Portal::UserDB::Custom;
use strict;
sub new {
my ( $class, $self ) = @_;
unless ( $self->{conf}->{customUserDB} ) {
die 'Custom user DB module not defined';
}
return $self->{p}->loadModule( $self->{conf}->{customUserDB} );
}
1;