mirror of
https://github.com/Luzifer/twitch-bot.git
synced 2024-11-08 16:20:02 +00:00
Add stub for eventlog
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
3ed9d41fe8
commit
7a66a89f50
3 changed files with 26 additions and 1 deletions
|
@ -15,7 +15,7 @@
|
|||
|
||||
<div class="row mt-3">
|
||||
<div class="col">
|
||||
<!-- Here Bot-Logs: #44 -->
|
||||
<DashboardEventlog />
|
||||
</div>
|
||||
<div class="col">
|
||||
<DashboardChangelog />
|
||||
|
@ -28,6 +28,7 @@
|
|||
import DashboardActiveRaffles from './dashboard/activeRaffles.vue'
|
||||
import DashboardBotScopes from './dashboard/scopes.vue'
|
||||
import DashboardChangelog from './dashboard/changelog.vue'
|
||||
import DashboardEventlog from './dashboard/eventlog.vue'
|
||||
import DashboardHealthCheck from './dashboard/healthcheck.vue'
|
||||
import { defineComponent } from 'vue'
|
||||
|
||||
|
@ -36,6 +37,7 @@ export default defineComponent({
|
|||
DashboardActiveRaffles,
|
||||
DashboardBotScopes,
|
||||
DashboardChangelog,
|
||||
DashboardEventlog,
|
||||
DashboardHealthCheck,
|
||||
},
|
||||
|
||||
|
|
20
src/components/dashboard/eventlog.vue
Normal file
20
src/components/dashboard/eventlog.vue
Normal file
|
@ -0,0 +1,20 @@
|
|||
<template>
|
||||
<div class="card user-select-none">
|
||||
<div class="card-header">
|
||||
{{ $t('dashboard.eventlog.heading') }}
|
||||
</div>
|
||||
<div
|
||||
class="card-body"
|
||||
>
|
||||
Coming soon…
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script lang="ts">
|
||||
import { defineComponent } from 'vue'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'DashboardEventlog',
|
||||
})
|
||||
</script>
|
|
@ -12,6 +12,9 @@
|
|||
"fullLink": "See full changelog in [History.md](https://github.com/Luzifer/twitch-bot/blob/master/History.md) on Github",
|
||||
"heading": "Changelog"
|
||||
},
|
||||
"eventlog": {
|
||||
"heading": "Eventlog"
|
||||
},
|
||||
"healthCheck": {
|
||||
"caption": "Checks OK",
|
||||
"header": "Bot-Health"
|
||||
|
|
Loading…
Reference in a new issue