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

[UIU-3259] - Fix permission changes for mod-circulation #2790

Open
wants to merge 11 commits into
base: master
Choose a base branch
from
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Change history for ui-users

## [11.1.0] In progress
* Update permissions for mod-patron. Ref UIU-3259

## [11.0.0](https://github.com/folio-org/ui-users/tree/v11.0.0) (2024-10-31)
[Full Changelog](https://github.com/folio-org/ui-users/compare/v10.1.2...v11.0.0)

Expand Down
36 changes: 22 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@folio/users",
"version": "11.0.0",
"version": "11.1.0",
"description": "User management",
"repository": "folio-org/ui-users",
"publishConfig": {
Expand Down Expand Up @@ -44,7 +44,7 @@
"batch-print": "1.0",
"circulation": "9.0 10.0 11.0 12.0 13.0 14.0",
"consortia": "1.0",
"feesfines": "16.1 17.0 18.0 19.0",
"feesfines": "16.1 17.0 18.0 19.1",
"loan-policy-storage": "1.0 2.0",
"loan-storage": "4.0 5.0 6.0 7.0",
"notes": "4.0",
Expand Down Expand Up @@ -548,8 +548,10 @@
"comments.item.get",
"payments.collection.get",
"payments.item.get",
"accounts.check-pay.post",
"accounts.pay.post"
"feesfines.accounts.check-pay.post",
"feesfines.accounts-bulk.check-pay.post",
"feesfines.accounts.pay.post",
"feesfines.accounts-bulk.pay.post"
],
"visible": true
},
Expand All @@ -564,8 +566,10 @@
"comments.item.get",
"waives.collection.get",
"waives.item.get",
"accounts.check-waive.post",
"accounts.waive.post"
"feesfines.accounts.check-waive.post",
"feesfines.accounts-bulk.check-waive.post",
"feesfines.accounts.waive.post",
"feesfines.accounts-bulk.waive.post"
],
"visible": true
},
Expand Down Expand Up @@ -695,9 +699,12 @@
"ui-users.manual_waive",
"accounts.check-transfer.post",
"accounts.check-refund.post",
"accounts.transfer.post",
"accounts.cancel.post",
"accounts.refund.post"
"feesfines.accounts.transfer.post",
"feesfines.accounts-bulk.transfer.post",
"feesfines.accounts.cancel.post",
"feesfines.accounts-bulk.cancel.post",
"feesfines.accounts.refund.post",
"feesfines.accounts-bulk.refund.post"
],
"visible": true
},
Expand All @@ -718,7 +725,7 @@
"description": "Also includes backend permissions to perform loans renew through override",
"replaces": ["ui-users.loans.renew-override"],
"subPermissions": [
"circulation.override-renewal-block"
"circulation.override-renewal-block.post"
],
"visible": true
},
Expand Down Expand Up @@ -957,7 +964,7 @@
"displayName": "User: Can override patron blocks",
"replaces": ["ui-users.overridePatronBlock"],
"subPermissions": [
"circulation.override-patron-block"
"circulation.override-patron-block.post"
],
"visible": true
},
Expand All @@ -966,8 +973,8 @@
"displayName": "User: Can override item blocks",
"replaces": ["ui-users.overrideItemBlock"],
"subPermissions": [
"circulation.override-item-limit-block",
"circulation.override-item-not-loanable-block"
"circulation.override-item-limit-block.post",
"circulation.override-item-not-loanable-block.post"
],
"visible": true
},
Expand All @@ -976,7 +983,8 @@
"displayName": "Users: Create and download Cash drawer reconciliation report",
"replaces": ["ui-users.cashDrawerReport"],
"subPermissions": [
"feefine-reports.cash-drawer-reconciliation.post"
"feesfines.feefine-reports.cash-drawer-reconciliation.item.post",
"feesfines.feefine-reports.cash-drawer-reconciliation-source.item.post"
],
"visible": true
},
Expand Down
Loading