TF-3042 Clean up public assets after identity is saved
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
import 'package:core/presentation/state/failure.dart';
|
||||
import 'package:core/presentation/state/success.dart';
|
||||
|
||||
class AddingIdentityToPublicAssetsState extends LoadingState {}
|
||||
|
||||
class AddIdentityToPublicAssetsSuccessState extends UIState {}
|
||||
|
||||
class AddIdentityToPublicAssetsFailureState extends FeatureFailure {
|
||||
AddIdentityToPublicAssetsFailureState({super.exception});
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
import 'package:core/presentation/state/failure.dart';
|
||||
import 'package:core/presentation/state/success.dart';
|
||||
|
||||
class CleaningUpPublicAssetsState extends LoadingState {}
|
||||
|
||||
class CleanUpPublicAssetsSuccessState extends UIState {}
|
||||
|
||||
class CleanUpPublicAssetsFailureState extends FeatureFailure {
|
||||
CleanUpPublicAssetsFailureState({super.exception});
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
import 'package:core/presentation/state/failure.dart';
|
||||
import 'package:core/presentation/state/success.dart';
|
||||
|
||||
class RemovingIdentityFromPublicAssetsState extends LoadingState {}
|
||||
|
||||
class RemoveIdentityFromPublicAssetsSuccessState extends UIState {}
|
||||
|
||||
class RemoveIdentityFromPublicAssetsFailureState extends FeatureFailure {
|
||||
RemoveIdentityFromPublicAssetsFailureState({super.exception});
|
||||
}
|
||||
|
||||
class NotFoundAnyPublicAssetsFailureState extends FeatureFailure {
|
||||
NotFoundAnyPublicAssetsFailureState({super.exception});
|
||||
}
|
||||
Reference in New Issue
Block a user