mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-06 12:20:19 +02:00
Added API endpoint and UI to list known domains
This commit is contained in:
parent
34ec869ca1
commit
e4117043cb
18 changed files with 402 additions and 161 deletions
30
front/src/views/admin/moderation/DomainsList.vue
Normal file
30
front/src/views/admin/moderation/DomainsList.vue
Normal file
|
@ -0,0 +1,30 @@
|
|||
<template>
|
||||
<main v-title="labels.domains">
|
||||
<section class="ui vertical stripe segment">
|
||||
<h2 class="ui header"><translate>Domains</translate></h2>
|
||||
<div class="ui hidden divider"></div>
|
||||
<domains-table></domains-table>
|
||||
</section>
|
||||
</main>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import DomainsTable from "@/components/manage/moderation/DomainsTable"
|
||||
|
||||
export default {
|
||||
components: {
|
||||
DomainsTable
|
||||
},
|
||||
computed: {
|
||||
labels() {
|
||||
return {
|
||||
domains: this.$gettext("Domains")
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<!-- Add "scoped" attribute to limit CSS to this component only -->
|
||||
<style scoped>
|
||||
</style>
|
Loading…
Add table
Add a link
Reference in a new issue