Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

UITEN-318 Permissions to view and set floating collection #442

Merged
merged 3 commits into from
Jan 20, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
* [UITEN-316](https://folio-org.atlassian.net/browse/UITEN-316) Fix code to pass ESLint successfully.
* [UITEN-314](https://folio-org.atlassian.net/browse/UITEN-314) Settings > Tenant > Locations setup > Locations. Enable and Display floating collection.
* [UITEN-317](https://folio-org.atlassian.net/browse/UITEN-317) Settings > Tenant > Locations setup > Locations. Display in detailed view when floating collection is enabled or not enabled.
* [UITEN-318](https://folio-org.atlassian.net/browse/UITEN-318) Permissions. Settings (tenant). View and be able to enable to set floating collection

## [9.0.0](https://github.com/folio-org/ui-tenant-settings/tree/v9.0.0)(2024-10-30)

Expand Down
16 changes: 16 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,22 @@
],
"visible": true
},
{
"permissionName": "ui-tenant-settings.settings.location.floating.view",
"displayName": "Settings (tenant): Can view floating collection flag",
"subPermissions": [
"ui-tenant-settings.settings.location.view"
],
"visible": true
},
{
"permissionName": "ui-tenant-settings.settings.location.floating.edit",
"displayName": "Settings (tenant): Can view and edit floating collection flag",
"subPermissions": [
"ui-tenant-settings.settings.location"
],
"visible": true
},
{
"permissionName": "ui-tenant-settings.settings.servicepoints.view",
"displayName": "Settings (tenant): Can view service points",
Expand Down
2 changes: 2 additions & 0 deletions translations/ui-tenant-settings/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -227,6 +227,8 @@
"permission.settings.sso.view": "Settings (tenant): Can view SSO settings",
"permission.settings.location": "Settings (tenant): Can create, edit and remove locations",
"permission.settings.location.view": "Settings (Tenant): View locations",
"permission.settings.location.floating.view": "Settings (tenant): Can view floating collection flag",
"permission.settings.location.floating.edit": "Settings (tenant): Can view and edit floating collection flag",
"permission.settings.servicepoints": "Settings (tenant): Can create and edit service points",
"permission.settings.servicepoints.view": "Settings (tenant): Can view service points",
"permission.settings.bursar-exports": "Settings (tenant): Bursar admin",
Expand Down
Loading