|
Lines 153-158
sub SendPasswordRecoveryEmail {
Link Here
|
| 153 |
|
153 |
|
| 154 |
return 1; |
154 |
return 1; |
| 155 |
} |
155 |
} |
|
|
156 |
|
| 156 |
=head2 CompletePasswordRecovery |
157 |
=head2 CompletePasswordRecovery |
| 157 |
|
158 |
|
| 158 |
$bool = CompletePasswordRevovery($uuid); |
159 |
$bool = CompletePasswordRevovery($uuid); |
|
Lines 160-165
sub SendPasswordRecoveryEmail {
Link Here
|
| 160 |
Deletes a password recovery entry. |
161 |
Deletes a password recovery entry. |
| 161 |
|
162 |
|
| 162 |
=cut |
163 |
=cut |
|
|
164 |
|
| 163 |
sub CompletePasswordRecovery{ |
165 |
sub CompletePasswordRecovery{ |
| 164 |
my $uniqueKey = shift; |
166 |
my $uniqueKey = shift; |
| 165 |
my $model = Koha::Database->new->schema->resultset('BorrowerPasswordRecovery'); |
167 |
my $model = Koha::Database->new->schema->resultset('BorrowerPasswordRecovery'); |
|
Lines 169-172
sub CompletePasswordRecovery{
Link Here
|
| 169 |
|
171 |
|
| 170 |
END { } # module clean-up code here (global destructor) |
172 |
END { } # module clean-up code here (global destructor) |
| 171 |
|
173 |
|
| 172 |
1; |
174 |
1; |
| 173 |
- |
|
|