TF-2305 Fixed getUploadUri and getDownloadUri not working with Cyrus

This commit is contained in:
Florent Azavant
2025-01-17 11:36:14 +01:00
committed by Dat H. Pham
parent c3887b7705
commit 327af38fb0
13 changed files with 333 additions and 163 deletions
@@ -0,0 +1,5 @@
import 'package:core/presentation/state/failure.dart';
class GetListDetailedEmailByIdFailure extends FeatureFailure {
GetListDetailedEmailByIdFailure({super.exception});
}
@@ -0,0 +1,6 @@
import 'package:core/presentation/state/failure.dart';
class PreviewPDFFileFailure extends FeatureFailure {
PreviewPDFFileFailure(dynamic exception) : super(exception: exception);
}