Add stub for eventlog

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2024-07-13 11:05:38 +02:00
parent 550204c885
commit aeb0d62689
Signed by: luzifer
SSH Key Fingerprint: SHA256:/xtE5lCgiRDQr8SLxHMS92ZBlACmATUmF1crK16Ks4E
3 changed files with 26 additions and 1 deletions

View File

@ -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,
},

View 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>

View File

@ -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"