2022-11-26 12:58:10 +00:00
|
|
|
<script setup lang="ts">
|
|
|
|
definePageMeta({
|
|
|
|
middleware: 'auth',
|
|
|
|
})
|
|
|
|
|
2022-12-03 05:36:10 +00:00
|
|
|
const paginator = useMasto().domainBlocks.iterate()
|
2022-11-26 12:58:10 +00:00
|
|
|
|
2022-11-29 22:49:25 +00:00
|
|
|
useHeadFixed({
|
2022-11-26 12:58:10 +00:00
|
|
|
title: 'Blocked domains',
|
|
|
|
})
|
|
|
|
|
|
|
|
const unblock = async (domain: string) => {
|
2022-11-26 15:42:58 +00:00
|
|
|
await useMasto().domainBlocks.unblock(domain)
|
2022-11-26 12:58:10 +00:00
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<MainContent back>
|
|
|
|
<template #title>
|
2022-11-29 21:50:13 +00:00
|
|
|
<span text-lg font-bold>{{ $t('account.blocked_domains') }}</span>
|
2022-11-26 12:58:10 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<CommonPaginator :paginator="paginator">
|
|
|
|
<template #default="{ item }">
|
|
|
|
<CommonDropdownItem class="!cursor-auto">
|
|
|
|
{{ item }}
|
|
|
|
<template #actions>
|
|
|
|
<div i-ri:lock-unlock-line text-primary cursor-pointer @click="unblock(item)" />
|
|
|
|
</template>
|
|
|
|
</CommonDropdownItem>
|
|
|
|
</template>
|
|
|
|
</CommonPaginator>
|
|
|
|
</MainContent>
|
|
|
|
</template>
|