TF-1100: Support display answered and forwarded

(cherry picked from commit cb67c81998264efbb75ae4543621a20522f3dbc4)
This commit is contained in:
HuyNguyen
2023-04-11 17:08:15 +07:00
committed by Dat Vu
parent b771785e58
commit 43554e26ca
11 changed files with 111 additions and 5 deletions
@@ -159,7 +159,9 @@ class EmailAPI with HandleSetErrorMixin {
emailRequest.sentMailboxId!.generatePath() : true,
outboxMailboxId!.generatePath() : null,
KeyWordIdentifier.emailSeen.generatePath(): true,
KeyWordIdentifier.emailDraft.generatePath(): null
KeyWordIdentifier.emailDraft.generatePath(): null,
KeyWordIdentifier.emailAnswered.generatePath(): emailRequest.isEmailAnswered ? true : null,
KeyWordIdentifier.emailForwarded.generatePath(): emailRequest.isEmailForwarded ? true : null
})
});