@finema/finework-layer 2.0.8 → 2.0.9
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 +2 -0
- package/app/components/PortalApp.vue +6 -7
- package/app/constants/routes.ts +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.0.9](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/2.0.8...2.0.9) (2026-07-07)
|
|
4
|
+
|
|
3
5
|
## [2.0.8](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/2.0.7...2.0.8) (2026-07-03)
|
|
4
6
|
|
|
5
7
|
## [2.0.7](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/2.0.6...2.0.7) (2026-07-03)
|
|
@@ -392,7 +392,7 @@ const managementApps = computed(() => [
|
|
|
392
392
|
},
|
|
393
393
|
]
|
|
394
394
|
: []),
|
|
395
|
-
...(auth.hasPermission(UserModule.TOR, Permission.ADMIN, Permission.SUPER)
|
|
395
|
+
...(auth.hasPermission(UserModule.TOR, Permission.USER, Permission.ADMIN, Permission.SUPER)
|
|
396
396
|
? [
|
|
397
397
|
{
|
|
398
398
|
name: 'tor',
|
|
@@ -404,16 +404,15 @@ const managementApps = computed(() => [
|
|
|
404
404
|
},
|
|
405
405
|
]
|
|
406
406
|
: []),
|
|
407
|
-
...(auth.hasPermission(UserModule.
|
|
407
|
+
...(auth.hasPermission(UserModule.SUPPORT, Permission.USER, Permission.ADMIN, Permission.SUPER)
|
|
408
408
|
? [
|
|
409
409
|
{
|
|
410
410
|
name: 'support',
|
|
411
411
|
logo: '/admin/support.svg',
|
|
412
412
|
label: 'Support',
|
|
413
413
|
description: 'Heatmap Monitor & Report',
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
status: StatusPortal.DEVELOPING,
|
|
414
|
+
to: routes.support.home.to,
|
|
415
|
+
status: StatusPortal.ACTIVE,
|
|
417
416
|
},
|
|
418
417
|
]
|
|
419
418
|
: []),
|
|
@@ -558,7 +557,7 @@ const peopleApps = computed(() => [
|
|
|
558
557
|
},
|
|
559
558
|
]
|
|
560
559
|
: []),
|
|
561
|
-
...(auth.hasPermission(UserModule.
|
|
560
|
+
...(auth.hasPermission(UserModule.RECRUIT, Permission.ADMIN, Permission.SUPER)
|
|
562
561
|
? [
|
|
563
562
|
{
|
|
564
563
|
name: 'Recruit',
|
|
@@ -566,7 +565,7 @@ const peopleApps = computed(() => [
|
|
|
566
565
|
label: 'Recruit',
|
|
567
566
|
description: 'ระบบการสรรหาบุคลากร',
|
|
568
567
|
to: '/',
|
|
569
|
-
status: StatusPortal.
|
|
568
|
+
status: StatusPortal.ACTIVE,
|
|
570
569
|
},
|
|
571
570
|
]
|
|
572
571
|
: []),
|
package/app/constants/routes.ts
CHANGED