add mark as seen to the bulk action

This commit is contained in:
Hongbo Wu
2024-05-29 17:07:19 +08:00
parent f496664025
commit a9ebcd33e4
5 changed files with 53 additions and 0 deletions

View File

@ -279,6 +279,7 @@ export enum BulkActionType {
Archive = 'ARCHIVE',
Delete = 'DELETE',
MarkAsRead = 'MARK_AS_READ',
MarkAsSeen = 'MARK_AS_SEEN',
MoveToFolder = 'MOVE_TO_FOLDER'
}

View File

@ -241,6 +241,7 @@ enum BulkActionType {
ARCHIVE
DELETE
MARK_AS_READ
MARK_AS_SEEN
MOVE_TO_FOLDER
}