https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36505 --- Comment #2 from Tomás Cohen Arazi <tomascohen@gmail.com> --- Created attachment 164500 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=164500&action=edit Bug 36505: Add support for `extended_attributes` in PUT /patrons/:patron_id This patch does what the title says. With it, you will be able to PUT on the already existing endpoint, but also pass: ```json [ { "type": "THE_TYPE", "value": "a" }, ... ] ``` Bonus: to ease testing I added `x-koha-embed: extended_attributes` support. To test: 1. Apply the unit tests 2. Run: $ ktd --shell k$ prove t/db_dependent/api/v1/patrons.t => FAIL: This is not implemented! 3. Apply this patch 4. Repeat 2 => SUCCESS: Exhaustive testes pass! 5. Sign off :-D -- You are receiving this mail because: You are watching all bug changes.