mirror of
https://github.com/Luzifer/twitch-bot.git
synced 2024-11-09 00:30:02 +00:00
Fix naming
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
6065dca230
commit
d483bf78bd
1 changed files with 4 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
||||||
import { createRouter, createWebHashHistory, type RouteRecordRaw } from 'vue-router'
|
import { createRouter, createWebHashHistory, type RouteRecordRaw } from 'vue-router'
|
||||||
|
|
||||||
import BothAuth from './components/botauth.vue'
|
import BotAuth from './components/botauth.vue'
|
||||||
import ChannelOverview from './components/channelOverview.vue'
|
import ChannelOverview from './components/channelOverview.vue'
|
||||||
import ChannelPermissions from './components/channelPermissions.vue'
|
import ChannelPermissions from './components/channelPermissions.vue'
|
||||||
import Dashboard from './components/dashboard.vue'
|
import Dashboard from './components/dashboard.vue'
|
||||||
|
@ -14,7 +14,7 @@ const routes = [
|
||||||
|
|
||||||
// General settings
|
// General settings
|
||||||
{
|
{
|
||||||
component: BothAuth,
|
component: BotAuth,
|
||||||
name: 'botAuth',
|
name: 'botAuth',
|
||||||
path: '/bot-auth',
|
path: '/bot-auth',
|
||||||
},
|
},
|
||||||
|
@ -28,7 +28,8 @@ const routes = [
|
||||||
{
|
{
|
||||||
component: ChannelPermissions,
|
component: ChannelPermissions,
|
||||||
name: 'channelPermissions',
|
name: 'channelPermissions',
|
||||||
path: ':channel', props: true,
|
path: ':channel',
|
||||||
|
props: true,
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
path: '/channels',
|
path: '/channels',
|
||||||
|
|
Loading…
Reference in a new issue