mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-28 03:46:00 +01:00
Support for renaming folders
This commit is contained in:
@@ -103,6 +103,7 @@ public class EntityFolder extends EntityOrder implements Serializable {
|
||||
public Integer initialize = DEFAULT_KEEP;
|
||||
public Boolean tbc; // to be created
|
||||
public Boolean tbd; // to be deleted
|
||||
public String rename;
|
||||
public String state;
|
||||
public String sync_state;
|
||||
@NonNull
|
||||
@@ -311,6 +312,7 @@ public class EntityFolder extends EntityOrder implements Serializable {
|
||||
Helper.equal(this.keywords, other.keywords) &&
|
||||
this.initialize.equals(other.initialize) &&
|
||||
Objects.equals(this.tbc, other.tbc) &&
|
||||
Objects.equals(this.rename, other.rename) &&
|
||||
Objects.equals(this.tbd, other.tbd) &&
|
||||
Objects.equals(this.state, other.state) &&
|
||||
Objects.equals(this.sync_state, other.sync_state) &&
|
||||
|
||||
Reference in New Issue
Block a user