2022-12-26 14:39:18 +09:00
|
|
|
<script setup lang="ts">
|
2023-01-15 17:38:02 +09:00
|
|
|
const { client } = $(useMasto())
|
|
|
|
const paginator = client.v1.domainBlocks.list()
|
2022-12-26 14:39:18 +09:00
|
|
|
|
2023-03-31 04:01:24 +09:00
|
|
|
async function unblock(domain: string) {
|
2024-01-09 17:56:15 +09:00
|
|
|
await client.v1.domainBlocks.remove({ domain })
|
2022-12-26 14:39:18 +09: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>
|