Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/comment_templates/routes.js')
-rw-r--r--app/assets/javascripts/comment_templates/routes.js15
1 files changed, 15 insertions, 0 deletions
diff --git a/app/assets/javascripts/comment_templates/routes.js b/app/assets/javascripts/comment_templates/routes.js
new file mode 100644
index 00000000000..7687c6f335a
--- /dev/null
+++ b/app/assets/javascripts/comment_templates/routes.js
@@ -0,0 +1,15 @@
+import IndexComponent from './pages/index.vue';
+
+import EditComponent from './pages/edit.vue';
+
+export default [
+ {
+ path: '/',
+ component: IndexComponent,
+ },
+ {
+ name: 'edit',
+ path: '/:id',
+ component: EditComponent,
+ },
+];