diff --git a/packages/frontend/editor-ui/src/views/SamlOnboarding.test.ts b/packages/frontend/editor-ui/src/features/sso/views/SamlOnboarding.test.ts similarity index 96% rename from packages/frontend/editor-ui/src/views/SamlOnboarding.test.ts rename to packages/frontend/editor-ui/src/features/sso/views/SamlOnboarding.test.ts index 7afecbee231..5bc81f6bf5c 100644 --- a/packages/frontend/editor-ui/src/views/SamlOnboarding.test.ts +++ b/packages/frontend/editor-ui/src/features/sso/views/SamlOnboarding.test.ts @@ -2,7 +2,7 @@ import userEvent from '@testing-library/user-event'; import { useRouter } from 'vue-router'; import { createTestingPinia } from '@pinia/testing'; import merge from 'lodash/merge'; -import SamlOnboarding from '@/views/SamlOnboarding.vue'; +import SamlOnboarding from './SamlOnboarding.vue'; import { STORES } from '@n8n/stores'; import { SETTINGS_STORE_DEFAULT_STATE, waitAllPromises } from '@/__tests__/utils'; import { createComponentRenderer } from '@/__tests__/render'; diff --git a/packages/frontend/editor-ui/src/views/SamlOnboarding.vue b/packages/frontend/editor-ui/src/features/sso/views/SamlOnboarding.vue similarity index 100% rename from packages/frontend/editor-ui/src/views/SamlOnboarding.vue rename to packages/frontend/editor-ui/src/features/sso/views/SamlOnboarding.vue diff --git a/packages/frontend/editor-ui/src/router.ts b/packages/frontend/editor-ui/src/router.ts index 26b3c7600e6..674d237f69c 100644 --- a/packages/frontend/editor-ui/src/router.ts +++ b/packages/frontend/editor-ui/src/router.ts @@ -65,7 +65,7 @@ const SettingsUsageAndPlan = async () => await import('@/features/usage/views/SettingsUsageAndPlan.vue'); const SettingsSso = async () => await import('@/features/sso/views/SettingsSso.vue'); const SignoutView = async () => await import('@/features/auth/views/SignoutView.vue'); -const SamlOnboarding = async () => await import('@/views/SamlOnboarding.vue'); +const SamlOnboarding = async () => await import('@/features/sso/views/SamlOnboarding.vue'); const SettingsSourceControl = async () => await import('@/features/sourceControl.ee/views/SettingsSourceControl.vue'); const SettingsExternalSecrets = async () =>