@finema/finework-layer 2.0.10 → 2.0.12
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 +4 -0
- package/app/components/PortalApp.vue +2 -2
- package/app/constants/routes.ts +8 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.0.12](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/2.0.11...2.0.12) (2026-07-10)
|
|
4
|
+
|
|
5
|
+
## [2.0.11](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/2.0.10...2.0.11) (2026-07-08)
|
|
6
|
+
|
|
3
7
|
## [2.0.10](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/2.0.9...2.0.10) (2026-07-07)
|
|
4
8
|
|
|
5
9
|
## [2.0.9](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/2.0.8...2.0.9) (2026-07-07)
|
|
@@ -564,8 +564,8 @@ const peopleApps = computed(() => [
|
|
|
564
564
|
logo: '/admin/recruit.png',
|
|
565
565
|
label: 'Recruit',
|
|
566
566
|
description: 'ระบบการสรรหาบุคลากร',
|
|
567
|
-
to:
|
|
568
|
-
status: StatusPortal.
|
|
567
|
+
to: routes.recruit.root.to,
|
|
568
|
+
status: StatusPortal.DEVELOPING,
|
|
569
569
|
},
|
|
570
570
|
]
|
|
571
571
|
: []),
|
package/app/constants/routes.ts
CHANGED
|
@@ -262,7 +262,14 @@ export const routes = {
|
|
|
262
262
|
permissions: ['support:USER', 'support:ADMIN', 'support:SUPER'],
|
|
263
263
|
},
|
|
264
264
|
},
|
|
265
|
-
|
|
265
|
+
recruit: {
|
|
266
|
+
root: {
|
|
267
|
+
label: 'Dashboard',
|
|
268
|
+
to: '/recruit',
|
|
269
|
+
icon: 'ph:squares-four',
|
|
270
|
+
permissions: ['recruit:USER', 'recruit:ADMIN', 'recruit:SUPER'],
|
|
271
|
+
},
|
|
272
|
+
},
|
|
266
273
|
} as const
|
|
267
274
|
|
|
268
275
|
export const sidebarProfile = [
|