mirror of https://github.com/elk-zone/elk.git
22 lines
583 B
Vue
22 lines
583 B
Vue
<script setup lang="ts">
|
|
const { client } = $(useMasto())
|
|
const paginator = client.v1.domainBlocks.list()
|
|
|
|
const unblock = async (domain: string) => {
|
|
await client.v1.domainBlocks.unblock(domain)
|
|
}
|
|
</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>
|