@finema/finework-layer 1.0.73 → 1.0.74
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/app/components/PortalApp.vue +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.0.74](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/1.0.73...1.0.74) (2026-06-02)
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* add SUPER permission to CHECKIN module and mark Loan as developing ([181e9e3](https://gitlab.finema.co/finema/finework/finework-frontend-layer/commit/181e9e31ee71d73322043c342906ca57b6a8ecb2))
|
|
8
|
+
|
|
3
9
|
## [1.0.73](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/1.0.72...1.0.73) (2026-05-28)
|
|
4
10
|
|
|
5
11
|
### Features
|
|
@@ -299,7 +299,7 @@ const handleLinkClick = (to: string) => {
|
|
|
299
299
|
}
|
|
300
300
|
|
|
301
301
|
const dailyApps = computed(() => [
|
|
302
|
-
...(auth.hasPermission(UserModule.CHECKIN, Permission.USER, Permission.ADMIN)
|
|
302
|
+
...(auth.hasPermission(UserModule.CHECKIN, Permission.USER, Permission.ADMIN, Permission.SUPER)
|
|
303
303
|
? [
|
|
304
304
|
{
|
|
305
305
|
name: 'Clock-In',
|
|
@@ -441,7 +441,7 @@ const financeApps = computed(() => [
|
|
|
441
441
|
label: 'Loan',
|
|
442
442
|
description: 'รายการกู้เงินจากธนาคาร',
|
|
443
443
|
to: routes.loan.list.lists.to,
|
|
444
|
-
status: StatusPortal.
|
|
444
|
+
status: StatusPortal.DEVELOPING,
|
|
445
445
|
},
|
|
446
446
|
]
|
|
447
447
|
: []),
|