feat: bootstrap backend MVP and architecture docs
This commit is contained in:
8
app/schemas/users.py
Normal file
8
app/schemas/users.py
Normal file
@@ -0,0 +1,8 @@
|
||||
from pydantic import BaseModel
|
||||
|
||||
|
||||
class UserUpsertBySubRequest(BaseModel):
|
||||
sub: str
|
||||
email: str | None = None
|
||||
display_name: str | None = None
|
||||
is_active: bool = True
|
||||
Reference in New Issue
Block a user