|
Lines 213-218
set required password strength for patrons in this category
Link Here
|
| 213 |
|
213 |
|
| 214 |
Exclude patrons of this category from local holds priority |
214 |
Exclude patrons of this category from local holds priority |
| 215 |
|
215 |
|
|
|
216 |
=head2 force_password_reset_when_set_by_staff |
| 217 |
|
| 218 |
data_type: 'tinyint' |
| 219 |
is_nullable: 1 |
| 220 |
|
| 221 |
if patrons of this category are required to reset password after being created by a staff member |
| 222 |
|
| 216 |
=cut |
223 |
=cut |
| 217 |
|
224 |
|
| 218 |
__PACKAGE__->add_columns( |
225 |
__PACKAGE__->add_columns( |
|
Lines 281-286
__PACKAGE__->add_columns(
Link Here
|
| 281 |
{ data_type => "tinyint", is_nullable => 1 }, |
288 |
{ data_type => "tinyint", is_nullable => 1 }, |
| 282 |
"exclude_from_local_holds_priority", |
289 |
"exclude_from_local_holds_priority", |
| 283 |
{ data_type => "tinyint", is_nullable => 1 }, |
290 |
{ data_type => "tinyint", is_nullable => 1 }, |
|
|
291 |
"force_password_reset_when_set_by_staff", |
| 292 |
{ data_type => "tinyint", is_nullable => 1 }, |
| 284 |
); |
293 |
); |
| 285 |
|
294 |
|
| 286 |
=head1 PRIMARY KEY |
295 |
=head1 PRIMARY KEY |
|
Lines 388-395
__PACKAGE__->has_many(
Link Here
|
| 388 |
); |
397 |
); |
| 389 |
|
398 |
|
| 390 |
|
399 |
|
| 391 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2024-03-26 17:00:07 |
400 |
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-06-21 17:38:40 |
| 392 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:6I6SD78A/PJ0AhUc1IEOPg |
401 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:xLkcN9dGi5WoQ+u0gKnuPQ |
| 393 |
|
402 |
|
| 394 |
sub koha_object_class { |
403 |
sub koha_object_class { |
| 395 |
'Koha::Patron::Category'; |
404 |
'Koha::Patron::Category'; |
| 396 |
- |
|
|