Skip to content

Commit

Permalink
UITEN-290 - Make dependency on mod-reading-rooms optional. (#407)
Browse files Browse the repository at this point in the history
  • Loading branch information
Terala-Priyanka authored May 30, 2024
1 parent 2c15a18 commit ddd97b8
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
# Change history for ui-tenant-settings

## 9.0.0 (IN PROGRESS)
## 8.2.0 (IN PROGRESS)

* [UITEN-274](https://folio-org.atlassian.net/browse/UITEN-274) Use Save & close button label stripes-component translation key.
* [UITEN-280](https://folio-org.atlassian.net/browse/UITEN-280) Conditionally include SSO Settings based on login-saml interface.
* [UITEN-286](https://folio-org.atlassian.net/browse/UITEN-286) *BREAKING* Add new interface. Add new permission to view reading room access in tenant settings.
* [UITEN-286](https://folio-org.atlassian.net/browse/UITEN-286) Add new interface. Add new permission to view reading room access in tenant settings.
* [UITEN-287](https://folio-org.atlassian.net/browse/UITEN-287) Add new permission to create, edit and remove reading room access in tenant settings.
* [UITEN-277](https://issues.folio.org/browse/UITEN-277) Ensure Reading Room Access settings page is wrapped by `Title Manager`.
* [UITEN-276](https://issues.folio.org/browse/UITEN-276) Reading Room Access (settings): Basic Layout.
* [UITEN-278] (https://issues.folio.org/browse/UITEN-278) Reading Room Access (settings): Create new reading room.
* [UITEN-282] (https://issues.folio.org/browse/UITEN-282) Reading Room Access (settings): Update reading room.
* [UITEN-283] (https://issues.folio.org/browse/UITEN-283) Reading Room Access (settings): Delete reading room.
* [UITEN-290] (https://issues.folio.org/browse/UITEN-290) Make dependency on mod-reading-rooms optional.

## [8.1.0](https://github.com/folio-org/ui-tenant-settings/tree/v8.1.0)(2024-03-19)
[Full Changelog](https://github.com/folio-org/ui-tenant-settings/compare/v8.0.0...v8.1.0)
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@folio/tenant-settings",
"version": "9.0.0",
"version": "8.1.0",
"description": "Tenant settings",
"main": "src/index.js",
"repository": "folio-org/ui-tenant-settings",
Expand All @@ -17,16 +17,16 @@
"route": "/tenant-settings",
"okapiInterfaces": {
"configuration": "2.0",
"users": "15.0 16.0",
"reading-room": "1.0"
"users": "15.0 16.0"
},
"optionalOkapiInterfaces": {
"location-units": "2.0",
"locations": "3.0",
"login-saml": "2.0",
"remote-storage-configurations": "1.0",
"remote-storage-mappings": "1.0 2.0",
"service-points": "3.0"
"service-points": "3.0",
"reading-room": "1.0"
},
"permissionSets": [
{
Expand Down
3 changes: 2 additions & 1 deletion src/settings/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ class Organization extends React.Component {
route: 'reading-room',
label: <FormattedMessage id="ui-tenant-settings.settings.reading-room-access.label" />,
component: ReadingRoomAccess,
perm: 'ui-tenant-settings.settings.reading-room-access.view'
perm: 'ui-tenant-settings.settings.reading-room-access.view',
iface: 'reading-room'
},
{
route: 'servicePoints',
Expand Down

0 comments on commit ddd97b8

Please sign in to comment.