TF-4195 Add Label to Thread

This commit is contained in:
dab246
2026-01-06 12:35:13 +07:00
committed by Dat H. Pham
parent ef1efc9310
commit 94fd6f8071
34 changed files with 829 additions and 40 deletions
@@ -495,4 +495,19 @@ class EmailRepositoryImpl extends EmailRepository {
labelKeyword,
);
}
@override
Future<void> addLabelToThread(
Session session,
AccountId accountId,
List<EmailId> emailIds,
KeyWordIdentifier labelKeyword,
) {
return emailDataSource[DataSourceType.network]!.addLabelToThread(
session,
accountId,
emailIds,
labelKeyword,
);
}
}