Added advanced account option for summary only notifications

This commit is contained in:
M66B
2023-04-11 08:36:48 +02:00
parent 18dc1b6f93
commit 9d716427ba
15 changed files with 3094 additions and 22 deletions

View File

@@ -39,6 +39,7 @@ public class TupleMessageEx extends EntityMessage {
public String accountCategory;
public Integer accountColor;
public boolean accountNotify;
public boolean accountSummary;
public boolean accountLeaveDeleted;
public boolean accountAutoSeen;
public String folderName;
@@ -146,6 +147,7 @@ public class TupleMessageEx extends EntityMessage {
Objects.equals(this.accountCategory, other.accountCategory) &&
Objects.equals(this.accountColor, other.accountColor) &&
this.accountNotify == other.accountNotify &&
this.accountSummary == other.accountSummary &&
this.accountLeaveDeleted == other.accountLeaveDeleted &&
this.accountAutoSeen == other.accountAutoSeen &&
this.folderName.equals(other.folderName) &&