diff --git a/src/views/xpack/GatherUser.vue b/src/views/xpack/GatheredUser/GatheredUserList.vue
similarity index 61%
rename from src/views/xpack/GatherUser.vue
rename to src/views/xpack/GatheredUser/GatheredUserList.vue
index cc24229c5..77db4c940 100644
--- a/src/views/xpack/GatherUser.vue
+++ b/src/views/xpack/GatheredUser/GatheredUserList.vue
@@ -1,5 +1,5 @@
-
+
diff --git a/src/views/xpack/GatheredUser/TaskCreateUpdate.vue b/src/views/xpack/GatheredUser/TaskCreateUpdate.vue
new file mode 100644
index 000000000..bc124141e
--- /dev/null
+++ b/src/views/xpack/GatheredUser/TaskCreateUpdate.vue
@@ -0,0 +1,46 @@
+
+
+
+
+
+
+
diff --git a/src/views/xpack/GatheredUser/TaskList.vue b/src/views/xpack/GatheredUser/TaskList.vue
new file mode 100644
index 000000000..e0b8a33f8
--- /dev/null
+++ b/src/views/xpack/GatheredUser/TaskList.vue
@@ -0,0 +1,35 @@
+
+
+
+
+
+
+
diff --git a/src/views/xpack/router.js b/src/views/xpack/router.js
index 70a305604..0f340bb5f 100644
--- a/src/views/xpack/router.js
+++ b/src/views/xpack/router.js
@@ -21,9 +21,30 @@ export default {
},
{
path: 'gathered-users',
- component: () => import('@/views/xpack/GatherUser'),
- name: 'GatherUser',
- meta: { title: 'GatherUser' }
+ component: () => import('@/views/xpack/GatheredUser/GatheredUserList'),
+ name: 'GatherUserList',
+ meta: { title: 'GatherUserList' }
+ },
+ {
+ path: 'gathered-users/tasks',
+ component: () => import('@/views/xpack/GatheredUser/TaskList'),
+ name: 'GatherUserTaskList',
+ meta: { title: 'GatherUserTask' },
+ hidden: true
+ },
+ {
+ path: 'gathered-users/tasks/create',
+ component: () => import('@/views/xpack/GatheredUser/TaskCreateUpdate'),
+ name: 'GatherUserTaskCreate',
+ meta: { title: 'GatherUserTaskCreate', action: 'create' },
+ hidden: true
+ },
+ {
+ path: 'gathered-users/tasks/update',
+ component: () => import('@/views/xpack/GatheredUser/TaskCreateUpdate'),
+ name: 'GatherUserTaskUpdate',
+ meta: { title: 'GatherUserTaskUpdate', action: 'update' },
+ hidden: true
}
]
}