refactor: Clean up hooks and fake doors (no-changelog) (#11498)

This commit is contained in:
Mutasem Aldmour
2024-11-01 15:23:41 +01:00
committed by GitHub
parent c5191e697a
commit 02b77367bd
16 changed files with 2 additions and 362 deletions

View File

@@ -38,7 +38,6 @@ const SettingsCommunityNodesView = async () =>
await import('./views/SettingsCommunityNodesView.vue');
const SettingsApiView = async () => await import('./views/SettingsApiView.vue');
const SettingsLogStreamingView = async () => await import('./views/SettingsLogStreamingView.vue');
const SettingsFakeDoorView = async () => await import('./views/SettingsFakeDoorView.vue');
const SetupView = async () => await import('./views/SetupView.vue');
const SigninView = async () => await import('./views/SigninView.vue');
const SignupView = async () => await import('./views/SignupView.vue');
@@ -642,24 +641,6 @@ export const routes: RouteRecordRaw[] = [
},
},
},
{
path: 'coming-soon/:featureId',
name: VIEWS.FAKE_DOOR,
components: {
settingsView: SettingsFakeDoorView,
},
meta: {
middleware: ['authenticated'],
telemetry: {
pageCategory: 'settings',
getProperties(route: RouteLocation) {
return {
feature: route.params.featureId,
};
},
},
},
},
{
path: 'ldap',
name: VIEWS.LDAP_SETTINGS,