TF-3385 Remove skipCache mechanism in get all emails
This commit is contained in:
@@ -29,7 +29,6 @@ abstract class ThreadRepository {
|
||||
Properties? propertiesCreated,
|
||||
Properties? propertiesUpdated,
|
||||
bool getLatestChanges = true,
|
||||
bool skipCache = false,
|
||||
}
|
||||
);
|
||||
|
||||
|
||||
@@ -27,7 +27,6 @@ class GetEmailsInMailboxInteractor {
|
||||
Properties? propertiesCreated,
|
||||
Properties? propertiesUpdated,
|
||||
bool getLatestChanges = true,
|
||||
bool skipCache = false,
|
||||
}
|
||||
) async* {
|
||||
try {
|
||||
@@ -42,8 +41,7 @@ class GetEmailsInMailboxInteractor {
|
||||
emailFilter: emailFilter,
|
||||
propertiesCreated: propertiesCreated,
|
||||
propertiesUpdated: propertiesUpdated,
|
||||
getLatestChanges: getLatestChanges,
|
||||
skipCache: skipCache)
|
||||
getLatestChanges: getLatestChanges)
|
||||
.map((emailResponse) => _toGetEmailState(
|
||||
emailResponse: emailResponse,
|
||||
currentMailboxId: emailFilter?.mailboxId
|
||||
|
||||
Reference in New Issue
Block a user