View | Details | Raw Unified | Return to bug 20691
Collapse All | Expand All

(-)a/Koha/Schema/Result/Borrower.pm (-2 / +3 lines)
Lines 1564-1572 __PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber"); Link Here
1564
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:lbMdmIHlRt+zayG5+Rq4/w
1564
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:lbMdmIHlRt+zayG5+Rq4/w
1565
1565
1566
__PACKAGE__->add_columns(
1566
__PACKAGE__->add_columns(
1567
    '+anonymized' => { is_boolean => 1 },
1567
    '+anonymized'    => { is_boolean => 1 },
1568
    '+lost'          => { is_boolean => 1 },
1568
    '+lost'          => { is_boolean => 1 },
1569
    '+gonenoaddress' => { is_boolean => 1 }
1569
    '+gonenoaddress' => { is_boolean => 1 },
1570
    '+privacy_guarantor_fines' => { is_boolean => 1 }
1570
);
1571
);
1571
1572
1572
sub koha_objects_class {
1573
sub koha_objects_class {
(-)a/api/v1/swagger/definitions/patron.json (-2 / +1 lines)
Lines 244-250 Link Here
244
      "description": "controls if relatives can see this patron's checkouts"
244
      "description": "controls if relatives can see this patron's checkouts"
245
    },
245
    },
246
    "privacy_guarantor_fines": {
246
    "privacy_guarantor_fines": {
247
      "type": "integer",
247
      "type": "boolean",
248
      "description": "controls if relatives can see this patron's fines"
248
      "description": "controls if relatives can see this patron's fines"
249
    },
249
    },
250
    "check_previous_checkout": {
250
    "check_previous_checkout": {
251
- 

Return to bug 20691