Fix frontend mailrule missing consumption scope parameter

This commit is contained in:
Michael Shamoon
2022-12-30 14:26:01 -08:00
parent 716f6b589a
commit c4b5b314d5
5 changed files with 88 additions and 46 deletions

View File

@@ -1,6 +1,11 @@
import { ObjectWithId } from './object-with-id'
export enum MailFilterAttachmentType {
Attachments = 1,
Everything = 2,
}
export enum MailRuleConsumptionScope {
Attachments = 1,
Email_Only = 2,
Everything = 3,