signal-desktop/ts/util/copyLinksWithToast.ts

15 lines
549 B
TypeScript
Raw Normal View History

2021-09-22 16:59:54 -04:00
// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import { ToastType } from '../types/Toast';
2021-09-22 16:59:54 -04:00
export async function copyGroupLink(groupLink: string): Promise<void> {
await window.navigator.clipboard.writeText(groupLink);
window.reduxActions.toast.showToast({ toastType: ToastType.GroupLinkCopied });
2021-09-22 16:59:54 -04:00
}
2024-05-22 09:24:27 -07:00
export async function copyCallLink(callLink: string): Promise<void> {
await window.navigator.clipboard.writeText(callLink);
window.reduxActions.toast.showToast({ toastType: ToastType.CopiedCallLink });
}