Moves DraftAttachments into redux
This commit is contained in:
15
ts/util/deleteDraftAttachment.ts
Normal file
15
ts/util/deleteDraftAttachment.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
// Copyright 2021 Signal Messenger, LLC
|
||||
// SPDX-License-Identifier: AGPL-3.0-only
|
||||
|
||||
import { AttachmentType } from '../types/Attachment';
|
||||
|
||||
export async function deleteDraftAttachment(
|
||||
attachment: Pick<AttachmentType, 'screenshotPath' | 'path'>
|
||||
): Promise<void> {
|
||||
if (attachment.screenshotPath) {
|
||||
await window.Signal.Migrations.deleteDraftFile(attachment.screenshotPath);
|
||||
}
|
||||
if (attachment.path) {
|
||||
await window.Signal.Migrations.deleteDraftFile(attachment.path);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user