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

(-)a/Koha/Schema/Result/Borrower.pm (+1 lines)
Lines 1539-1544 __PACKAGE__->belongs_to( Link Here
1539
);
1539
);
1540
1540
1541
__PACKAGE__->add_columns(
1541
__PACKAGE__->add_columns(
1542
    '+anonymized'    => { is_boolean => 1 },
1542
    '+lost'          => { is_boolean => 1 },
1543
    '+lost'          => { is_boolean => 1 },
1543
    '+gonenoaddress' => { is_boolean => 1 }
1544
    '+gonenoaddress' => { is_boolean => 1 }
1544
);
1545
);
(-)a/api/v1/swagger/definitions/patron.json (-1 / +4 lines)
Lines 272-277 Link Here
272
    "overdrive_auth_token": {
272
    "overdrive_auth_token": {
273
      "type": ["string", "null"],
273
      "type": ["string", "null"],
274
      "description": "persist OverDrive auth token"
274
      "description": "persist OverDrive auth token"
275
    },
276
    "anonymized": {
277
      "type": "boolean",
278
      "description": "If the patron has been anonymized"
275
    }
279
    }
276
  },
280
  },
277
  "additionalProperties": false,
281
  "additionalProperties": false,
278
- 

Return to bug 21336