diff --git a/app/components/app/user/entry-form.vue b/app/components/app/employee/entry-form.vue
similarity index 100%
rename from app/components/app/user/entry-form.vue
rename to app/components/app/employee/entry-form.vue
diff --git a/app/components/app/user/list-cfg.ts b/app/components/app/employee/list-cfg.ts
similarity index 100%
rename from app/components/app/user/list-cfg.ts
rename to app/components/app/employee/list-cfg.ts
diff --git a/app/components/app/user/list.vue b/app/components/app/employee/list.vue
similarity index 100%
rename from app/components/app/user/list.vue
rename to app/components/app/employee/list.vue
diff --git a/app/components/app/user/picker.vue b/app/components/app/employee/picker.vue
similarity index 100%
rename from app/components/app/user/picker.vue
rename to app/components/app/employee/picker.vue
diff --git a/app/components/app/user/search.vue b/app/components/app/employee/search.vue
similarity index 100%
rename from app/components/app/user/search.vue
rename to app/components/app/employee/search.vue
diff --git a/app/components/flow/user/entry.vue b/app/components/flow/employee/entry.vue
similarity index 95%
rename from app/components/flow/user/entry.vue
rename to app/components/flow/employee/entry.vue
index 7fb4d66d..facc4505 100644
--- a/app/components/flow/user/entry.vue
+++ b/app/components/flow/employee/entry.vue
@@ -10,7 +10,7 @@ const data = ref({
function onClick(type: string) {
if (type === 'cancel') {
- navigateTo('/human-src/user')
+ navigateTo('/human-src/employee')
} else if (type === 'draft') {
// do something
} else if (type === 'submit') {
diff --git a/app/components/flow/user/list.vue b/app/components/flow/employee/list.vue
similarity index 96%
rename from app/components/flow/user/list.vue
rename to app/components/flow/employee/list.vue
index 4b77cf12..a63be0d0 100644
--- a/app/components/flow/user/list.vue
+++ b/app/components/flow/employee/list.vue
@@ -30,7 +30,7 @@ const headerPrep: HeaderPrep = {
icon: 'i-lucide-users',
addNav: {
label: 'Tambah',
- onClick: () => navigateTo('/human-src/user/add'),
+ onClick: () => navigateTo('/human-src/employee/add'),
},
}
diff --git a/app/pages/(features)/human-src/user/add.vue b/app/pages/(features)/human-src/employee/add.vue
similarity index 97%
rename from app/pages/(features)/human-src/user/add.vue
rename to app/pages/(features)/human-src/employee/add.vue
index 39ba8791..7cb1873e 100644
--- a/app/pages/(features)/human-src/user/add.vue
+++ b/app/pages/(features)/human-src/employee/add.vue
@@ -35,7 +35,7 @@ const canCreate = hasCreateAccess(roleAccess)
-
+
diff --git a/app/pages/(features)/human-src/user/index.vue b/app/pages/(features)/human-src/employee/index.vue
similarity index 97%
rename from app/pages/(features)/human-src/user/index.vue
rename to app/pages/(features)/human-src/employee/index.vue
index 2c0f921f..f529d734 100644
--- a/app/pages/(features)/human-src/user/index.vue
+++ b/app/pages/(features)/human-src/employee/index.vue
@@ -33,7 +33,7 @@ const canRead = hasReadAccess(roleAccess)