2022-12-26 05:39:18 +00:00
|
|
|
<script setup lang="ts">
|
2024-02-21 15:20:08 +00:00
|
|
|
const { client } = useMasto()
|
|
|
|
const paginator = client.value.v1.domainBlocks.list()
|
2022-12-26 05:39:18 +00:00
|
|
|
|
2023-03-30 19:01:24 +00:00
|
|
|
async function unblock(domain: string) {
|
2024-02-21 15:20:08 +00:00
|
|
|
await client.value.v1.domainBlocks.remove({ domain })
|
2022-12-26 05:39:18 +00:00
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<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>
|
|
|
|
</template>
|