diff --git a/code/web/release_notes/25.01.00.MD b/code/web/release_notes/25.01.00.MD index 8e19a703ff..a1620a2d6a 100644 --- a/code/web/release_notes/25.01.00.MD +++ b/code/web/release_notes/25.01.00.MD @@ -3,6 +3,9 @@ ### Github Updates - Move Aspen LiDA to it's own repository at https://github.com/Aspen-Discovery/aspen-lida. (*MDN*) +### Local ILL +- Show Out of Hold Group Message when available. (DIS-34) (*MDN*) + ## Aspen Discovery Updates //mark ### Account Updates @@ -12,6 +15,9 @@ - Add a "select all" and "deselect all" button to all lists of objects where the select checkbox shows. (DIS-37) (*MDN*) - When showing selected values for multiselect lists within a table, only show the first 3 values. (*MDN*) +### API Updates +- Add Out of Hold Group Message to getPatronHolds API. (DIS-34) (*MDN*) + ### Indexing Updates - When indexing the 100, 700 and 800 fields to load information about authors and contributors include subfield c to distinguish between authors where titles and additional information is important. (DIS-161) (*MDN*) - When checking for Yoto players, check to be sure yoto is found with word boundaries on either side to avoid matching Kyoto. (DIS-154) (*MDN*) diff --git a/code/web/sys/User/Hold.php b/code/web/sys/User/Hold.php index c1db6a0dde..4970d91303 100644 --- a/code/web/sys/User/Hold.php +++ b/code/web/sys/User/Hold.php @@ -138,6 +138,7 @@ public function getArrayForAPIs() { $hold['isIll'] = (boolean)$this->isIll; $hold['position'] = (int)$hold['position']; $hold['pendingCancellation'] = $this->pendingCancellation; + $hold['outOfHoldGroupMessage'] = $this->outOfHoldGroupMessage; return $hold; }