summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2016-06-14 13:25:21 +0200
committerChristian Mollekopf <chrigi_1@fastmail.fm>2016-06-15 07:12:13 +0200
commitbd64dd286ddc0c5732b9977f78dc945ac40f5b4f (patch)
tree0cafbad602dd427bc8859334b412c31b6755b0e1 /common
parent8e7528cbbd422b5ae5d571542b9bd4a7d8c119a0 (diff)
downloadsink-bd64dd286ddc0c5732b9977f78dc945ac40f5b4f.tar.gz
sink-bd64dd286ddc0c5732b9977f78dc945ac40f5b4f.zip
Prepared trash test
Diffstat (limited to 'common')
-rw-r--r--common/domain/applicationdomaintype.h1
-rw-r--r--common/domain/mail.fbs1
2 files changed, 2 insertions, 0 deletions
diff --git a/common/domain/applicationdomaintype.h b/common/domain/applicationdomaintype.h
index 72ac480..12a9e56 100644
--- a/common/domain/applicationdomaintype.h
+++ b/common/domain/applicationdomaintype.h
@@ -210,6 +210,7 @@ struct SINK_EXPORT Mail : public Entity {
210 SINK_REFERENCE_PROPERTY(Folder, Folder, folder); 210 SINK_REFERENCE_PROPERTY(Folder, Folder, folder);
211 SINK_BLOB_PROPERTY(MimeMessage, mimeMessage); 211 SINK_BLOB_PROPERTY(MimeMessage, mimeMessage);
212 SINK_PROPERTY(bool, Draft, draft); 212 SINK_PROPERTY(bool, Draft, draft);
213 SINK_PROPERTY(bool, Trash, trash);
213}; 214};
214 215
215/** 216/**
diff --git a/common/domain/mail.fbs b/common/domain/mail.fbs
index addc7c4..3a84ca1 100644
--- a/common/domain/mail.fbs
+++ b/common/domain/mail.fbs
@@ -11,6 +11,7 @@ table Mail {
11 important:bool = false; 11 important:bool = false;
12 mimeMessage:string; 12 mimeMessage:string;
13 draft:bool = false; 13 draft:bool = false;
14 trash:bool = false;
14} 15}
15 16
16root_type Mail; 17root_type Mail;