Added API endpoint and UI to list known domains

This commit is contained in:
Eliot Berriot 2018-12-26 23:03:27 +01:00
parent 34ec869ca1
commit e4117043cb
No known key found for this signature in database
GPG key ID: DD6965E2476E5C27
18 changed files with 402 additions and 161 deletions

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