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

26 lines
334 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(
2021-02-10 22:27:12 +01:00
PE_NO_PASSWORD_BE
2017-04-25 09:28:33 +02:00
);
extends 'Lemonldap::NG::Portal::Password::Base';
2021-02-10 22:27:12 +01:00
our $VERSION = '2.0.12';
2017-04-25 09:28:33 +02:00
2021-02-10 22:27:12 +01:00
sub init {
return 1;
}
2017-04-25 09:28:33 +02:00
2021-02-10 22:27:12 +01:00
sub confirm {
return 1;
}
2017-04-25 09:28:33 +02:00
sub modifyPassword {
2021-02-10 22:27:12 +01:00
return PE_NO_PASSWORD_BE;
2017-04-25 09:28:33 +02:00
}
1;