Bug 17361 - Add item messages table and rest api endpoints
Summary: Add item messages table and rest api endpoints
Status: CLOSED WONTFIX
Alias: None
Product: Koha
Classification: Unclassified
Component: REST API (show other bugs)
Version: Main
Hardware: All All
: P5 - low enhancement
Assignee: Kyle M Hall (khall)
QA Contact:
URL:
Keywords:
Depends on:
Blocks: 17297
  Show dependency treegraph
 
Reported: 2016-09-27 13:24 UTC by Kyle M Hall (khall)
Modified: 2021-12-13 21:10 UTC (History)
2 users (show)

See Also:
Change sponsored?: ---
Patch complexity: ---
Documentation contact:
Documentation submission:
Text to go in the release notes:
Version(s) released in:
Circulation function:


Attachments
Bug 17361: Update database (4.97 KB, patch)
2017-03-07 19:30 UTC, Tomás Cohen Arazi (tcohen)
Details | Diff | Splinter Review
Bug 17361: Update existing schema (1.35 KB, patch)
2017-03-07 19:30 UTC, Tomás Cohen Arazi (tcohen)
Details | Diff | Splinter Review
Bug 17361: Add Koha::Item::Message(s) (2.90 KB, patch)
2017-03-07 19:30 UTC, Tomás Cohen Arazi (tcohen)
Details | Diff | Splinter Review
Bug 17361: REST api | Add /items/messages endpoints (16.78 KB, patch)
2017-03-07 19:30 UTC, Tomás Cohen Arazi (tcohen)
Details | Diff | Splinter Review

Note You need to log in before you can comment on or make changes to this bug.
Description Kyle M Hall (khall) 2016-09-27 13:24:59 UTC
This enhancement is to add the ability to create item messages and perform crud operations on them via the rest api only. The interface will be determined on the bug it blocks.
Comment 1 Tomás Cohen Arazi (tcohen) 2017-03-07 19:30:06 UTC
Created attachment 60897 [details] [review]
Bug 17361: Update database
Comment 2 Tomás Cohen Arazi (tcohen) 2017-03-07 19:30:10 UTC
Created attachment 60898 [details] [review]
Bug 17361: Update existing schema
Comment 3 Tomás Cohen Arazi (tcohen) 2017-03-07 19:30:14 UTC
Created attachment 60899 [details] [review]
Bug 17361: Add Koha::Item::Message(s)
Comment 4 Tomás Cohen Arazi (tcohen) 2017-03-07 19:30:19 UTC
Created attachment 60900 [details] [review]
Bug 17361: REST api | Add /items/messages endpoints

This patch adds the following endpoints:
- /items/{itemnumber}/messages
- /items/{itemnumber}/messages/{item_message_id}
for CRUD operation on item messages.

Unit tests to come.