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 @ 2023-11-01 20:49:52 |
400 |
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-06-06 18:58:48 |
392 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:r0Mftlw4TU7x+Ze2pAlwYQ |
401 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:fmpmgMv21bXYHsUDu0/jpQ |
393 |
|
402 |
|
394 |
sub koha_object_class { |
403 |
sub koha_object_class { |
395 |
'Koha::Patron::Category'; |
404 |
'Koha::Patron::Category'; |
396 |
- |
|
|