This commit is contained in:
2026-04-08 12:14:57 +02:00
parent c29024267b
commit 5f5dc141a9
8 changed files with 264 additions and 13 deletions

View File

@@ -51,5 +51,8 @@ class AuthBloc extends Bloc<AuthEvent, AuthState> {
);
}
});
on<LogoutRequested>((event, emit) async {
await _supabase.auth.signOut();
});
}
}