properly use OIDC security parameters like nonce and state

This commit is contained in:
lilly 2026-05-03 22:09:35 +02:00
commit 801edc4042
Signed by: lilly
SSH key fingerprint: SHA256:y9T5GFw2A20WVklhetIxG1+kcg/Ce0shnQmbu1LQ37g
2 changed files with 53 additions and 20 deletions

View file

@ -0,0 +1,11 @@
from typing import Optional
from pydantic import BaseModel
class UserInfo(BaseModel):
name: str
class UserStatus(BaseModel):
is_logged_in: bool
user_info: Optional[UserInfo]