lemonldap-ng/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Password/Null.pm

22 lines
296 B
Perl
Raw Normal View History

2017-04-25 09:28:33 +02:00
package Lemonldap::NG::Portal::Password::Null;
use strict;
use Mouse;
use Lemonldap::NG::Portal::Main::Constants qw(
PE_PASSWORD_OK
);
extends 'Lemonldap::NG::Portal::Password::Base';
our $VERSION = '2.0.0';
2017-06-23 11:57:07 +02:00
sub init { 1 }
2017-04-25 09:28:33 +02:00
2017-06-23 11:57:07 +02:00
sub confirm { 1 }
2017-04-25 09:28:33 +02:00
sub modifyPassword {
2017-06-23 11:57:07 +02:00
PE_PASSWORD_OK;
2017-04-25 09:28:33 +02:00
}
1;