From 12b56e6a2f7b92e5cbaf7646ab6cfc4819427d9f Mon Sep 17 00:00:00 2001 From: Shivam Mishra Date: Mon, 4 Dec 2023 13:39:48 +0530 Subject: [PATCH] refactor: update route name --- .../views/auth/start/{SetupUser.vue => SetupProfile.vue} | 0 app/javascript/v3/views/routes.js | 8 ++++---- 2 files changed, 4 insertions(+), 4 deletions(-) rename app/javascript/v3/views/auth/start/{SetupUser.vue => SetupProfile.vue} (100%) diff --git a/app/javascript/v3/views/auth/start/SetupUser.vue b/app/javascript/v3/views/auth/start/SetupProfile.vue similarity index 100% rename from app/javascript/v3/views/auth/start/SetupUser.vue rename to app/javascript/v3/views/auth/start/SetupProfile.vue diff --git a/app/javascript/v3/views/routes.js b/app/javascript/v3/views/routes.js index cf4b181be..d73db1c62 100644 --- a/app/javascript/v3/views/routes.js +++ b/app/javascript/v3/views/routes.js @@ -5,7 +5,7 @@ const Signup = () => import('./auth/signup/Index.vue'); const ResetPassword = () => import('./auth/reset/password/Index.vue'); const Confirmation = () => import('./auth/confirmation/Index.vue'); const PasswordEdit = () => import('./auth/password/Edit.vue'); -const SetupUser = () => import('./auth/start/SetupUser.vue'); +const SetupProfile = () => import('./auth/start/SetupProfile.vue'); const SetupCompany = () => import('./auth/start/SetupCompany.vue'); const FounderNote = () => import('./auth/start/FounderNote.vue'); @@ -57,9 +57,9 @@ export default [ component: ResetPassword, }, { - path: frontendURL('auth/start/setup-user'), - name: 'onboarding_setup_user', - component: SetupUser, + path: frontendURL('auth/start/setup-profile'), + name: 'onboarding_setup_profile', + component: SetupProfile, }, { path: frontendURL('auth/start/setup-company'),