mirror of
https://github.com/etesync/server
synced 2024-11-22 16:58:08 +00:00
Login: also return username and email upon login.
This commit is contained in:
parent
c2a2e710c9
commit
586b015eb7
@ -46,12 +46,19 @@ class LoginResponse(BaseModel):
|
|||||||
|
|
||||||
|
|
||||||
class UserOut(BaseModel):
|
class UserOut(BaseModel):
|
||||||
|
username: str
|
||||||
|
email: str
|
||||||
pubkey: bytes
|
pubkey: bytes
|
||||||
encryptedContent: bytes
|
encryptedContent: bytes
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def from_orm(cls: t.Type["UserOut"], obj: User) -> "UserOut":
|
def from_orm(cls: t.Type["UserOut"], obj: User) -> "UserOut":
|
||||||
return cls(pubkey=bytes(obj.userinfo.pubkey), encryptedContent=bytes(obj.userinfo.encryptedContent))
|
return cls(
|
||||||
|
username=obj.username,
|
||||||
|
email=obj.email,
|
||||||
|
pubkey=bytes(obj.userinfo.pubkey),
|
||||||
|
encryptedContent=bytes(obj.userinfo.encryptedContent),
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
class LoginOut(BaseModel):
|
class LoginOut(BaseModel):
|
||||||
|
Loading…
Reference in New Issue
Block a user