feat(mobile): archive action (#19630)
* feat(mobile): archive action * fix: lint * Update i18n/en.json Co-authored-by: Alex <alex.tran1502@gmail.com> * fix: lint * fix: lint --------- Co-authored-by: Alex <alex.tran1502@gmail.com>
This commit is contained in:
@@ -25,4 +25,12 @@ class ActionNotifier extends Notifier<void> {
|
||||
Future<void> unFavorite(List<String> ids) async {
|
||||
await _service.unFavorite(ids);
|
||||
}
|
||||
|
||||
Future<void> archive(List<String> ids) async {
|
||||
await _service.archive(ids);
|
||||
}
|
||||
|
||||
Future<void> unArchive(List<String> ids) async {
|
||||
await _service.unArchive(ids);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user