refactor(editor): Extract saml code into features/sso (no-changelog) (#20801)

This commit is contained in:
Alex Grozav 2025-10-15 15:33:57 +03:00 committed by GitHub
parent 78058ba985
commit 3c394ea679
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 2 additions and 2 deletions

View File

@ -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';

View File

@ -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 () =>