diff --git a/dashboard/src/components/Dashboard/GuildConfigEditor.vue b/dashboard/src/components/dashboard/GuildConfigEditor.vue similarity index 100% rename from dashboard/src/components/Dashboard/GuildConfigEditor.vue rename to dashboard/src/components/dashboard/GuildConfigEditor.vue diff --git a/dashboard/src/components/Dashboard/GuildList.vue b/dashboard/src/components/dashboard/GuildList.vue similarity index 100% rename from dashboard/src/components/Dashboard/GuildList.vue rename to dashboard/src/components/dashboard/GuildList.vue diff --git a/dashboard/src/components/Dashboard/Layout.vue b/dashboard/src/components/dashboard/Layout.vue similarity index 100% rename from dashboard/src/components/Dashboard/Layout.vue rename to dashboard/src/components/dashboard/Layout.vue diff --git a/dashboard/src/components/Docs/CodeBlock.vue b/dashboard/src/components/docs/CodeBlock.vue similarity index 100% rename from dashboard/src/components/Docs/CodeBlock.vue rename to dashboard/src/components/docs/CodeBlock.vue diff --git a/dashboard/src/components/Docs/ConfigurationFormat.vue b/dashboard/src/components/docs/ConfigurationFormat.vue similarity index 100% rename from dashboard/src/components/Docs/ConfigurationFormat.vue rename to dashboard/src/components/docs/ConfigurationFormat.vue diff --git a/dashboard/src/components/Docs/Introduction.vue b/dashboard/src/components/docs/Introduction.vue similarity index 100% rename from dashboard/src/components/Docs/Introduction.vue rename to dashboard/src/components/docs/Introduction.vue diff --git a/dashboard/src/components/Docs/Layout.vue b/dashboard/src/components/docs/Layout.vue similarity index 100% rename from dashboard/src/components/Docs/Layout.vue rename to dashboard/src/components/docs/Layout.vue diff --git a/dashboard/src/components/Docs/Permissions.vue b/dashboard/src/components/docs/Permissions.vue similarity index 100% rename from dashboard/src/components/Docs/Permissions.vue rename to dashboard/src/components/docs/Permissions.vue diff --git a/dashboard/src/components/Docs/PluginConfiguration.vue b/dashboard/src/components/docs/PluginConfiguration.vue similarity index 100% rename from dashboard/src/components/Docs/PluginConfiguration.vue rename to dashboard/src/components/docs/PluginConfiguration.vue diff --git a/dashboard/src/routes.ts b/dashboard/src/routes.ts index b1b2dacc..7ec2ff22 100644 --- a/dashboard/src/routes.ts +++ b/dashboard/src/routes.ts @@ -17,23 +17,23 @@ export const router = new VueRouter({ // Docs { path: "/docs", - component: () => import("./components/Docs/Layout.vue"), + component: () => import("./components/docs/Layout.vue"), children: [ { path: "", - component: () => import("./components/Docs/Introduction.vue"), + component: () => import("./components/docs/Introduction.vue"), }, { path: "configuration-format", - component: () => import("./components/Docs/ConfigurationFormat.vue"), + component: () => import("./components/docs/ConfigurationFormat.vue"), }, { path: "permissions", - component: () => import("./components/Docs/Permissions.vue"), + component: () => import("./components/docs/Permissions.vue"), }, { path: "plugin-configuration", - component: () => import("./components/Docs/PluginConfiguration.vue"), + component: () => import("./components/docs/PluginConfiguration.vue"), }, ], }, @@ -41,16 +41,16 @@ export const router = new VueRouter({ // Dashboard { path: "/dashboard", - component: () => import("./components/Dashboard/Layout.vue"), + component: () => import("./components/dashboard/Layout.vue"), beforeEnter: authGuard, children: [ { path: "", - component: () => import("./components/Dashboard/GuildList.vue"), + component: () => import("./components/dashboard/GuildList.vue"), }, { path: "guilds/:guildId/config", - component: () => import("./components/Dashboard/GuildConfigEditor.vue"), + component: () => import("./components/dashboard/GuildConfigEditor.vue"), }, ], },