mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-20 20:29:06 +00:00
removal of email-verified from /me (#707)
Co-authored-by: Igor Loskutov <igor.loskutoff@gmail.com>
This commit is contained in:
@@ -11,7 +11,6 @@ router = APIRouter()
|
|||||||
class UserInfo(BaseModel):
|
class UserInfo(BaseModel):
|
||||||
sub: str
|
sub: str
|
||||||
email: Optional[str]
|
email: Optional[str]
|
||||||
email_verified: Optional[bool]
|
|
||||||
|
|
||||||
|
|
||||||
@router.get("/me")
|
@router.get("/me")
|
||||||
|
|||||||
2
www/app/reflector-api.d.ts
vendored
2
www/app/reflector-api.d.ts
vendored
@@ -1518,8 +1518,6 @@ export interface components {
|
|||||||
sub: string;
|
sub: string;
|
||||||
/** Email */
|
/** Email */
|
||||||
email: string | null;
|
email: string | null;
|
||||||
/** Email Verified */
|
|
||||||
email_verified: boolean | null;
|
|
||||||
};
|
};
|
||||||
/** ValidationError */
|
/** ValidationError */
|
||||||
ValidationError: {
|
ValidationError: {
|
||||||
|
|||||||
Reference in New Issue
Block a user