♻️ Rework of the oidc login flow (wip)

This commit is contained in:
2025-11-16 17:07:34 +08:00
parent 4b03b45a0d
commit 4ec10ceb47
4 changed files with 281 additions and 42 deletions

View File

@@ -16,3 +16,10 @@ class PostCreatedEvent {
class ChatRoomsRefreshEvent {
const ChatRoomsRefreshEvent();
}
/// Event fired when OIDC auth callback is received
class OidcAuthCallbackEvent {
final String challengeId;
const OidcAuthCallbackEvent(this.challengeId);
}