forked from coracle/flotilla
Add ChannelMessageMenuMobile
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
<script lang="ts">
|
||||
import Confirm from "@lib/components/Confirm.svelte"
|
||||
import {publishDelete} from "@app/commands"
|
||||
|
||||
export let url
|
||||
export let event
|
||||
|
||||
const confirm = async () => {
|
||||
await publishDelete({event, relays: [url]})
|
||||
|
||||
history.back()
|
||||
}
|
||||
</script>
|
||||
|
||||
<Confirm
|
||||
{confirm}
|
||||
title="Delete Message"
|
||||
subtitle="Are you sure you want to delete this message?"
|
||||
message="This will send a request to delete this message. Be aware that not all relays may honor this request." />
|
||||
Reference in New Issue
Block a user