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