TF-1014: [Dev] Show quota at the bottom of mailbox
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
import 'package:jmap_dart_client/jmap/account_id.dart';
|
||||
import 'package:tmail_ui_user/features/quotas/data/datasource/quotas_data_source.dart';
|
||||
import 'package:tmail_ui_user/features/quotas/domain/model/quotas_response.dart';
|
||||
import 'package:tmail_ui_user/features/quotas/domain/repository/quotas_repository.dart';
|
||||
|
||||
class QuotasRepositoryImpl extends QuotasRepository {
|
||||
final QuotasDataSource _dataSource;
|
||||
|
||||
QuotasRepositoryImpl(this._dataSource);
|
||||
|
||||
@override
|
||||
Future<QuotasResponse> getQuotas(AccountId accountId) {
|
||||
return _dataSource.getQuotas(accountId);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user