Skip to content

Commit 1f7d51a

Browse files
committed
feat(authentication): add AuthenticationCooldownCompleted event
- Add new event to handle sign-in code request cooldown completion - Update authentication bloc to include cooldown reset functionality
1 parent 15f88c1 commit 1f7d51a

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

lib/authentication/bloc/authentication_event.dart

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,3 +76,11 @@ final class _AuthenticationUserChanged extends AuthenticationEvent {
7676
@override
7777
List<Object?> get props => [user];
7878
}
79+
80+
/// {@template authentication_cooldown_completed}
81+
/// Event triggered when the sign-in code request cooldown has completed.
82+
/// {@endtemplate}
83+
final class AuthenticationCooldownCompleted extends AuthenticationEvent {
84+
/// {@macro authentication_cooldown_completed}
85+
const AuthenticationCooldownCompleted();
86+
}

0 commit comments

Comments
 (0)