mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-rest-api.git
synced 2025-03-16 19:44:46 +00:00
fix: typing 100%
This commit is contained in:
parent
73ec9fab81
commit
fcf16a9059
1 changed files with 2 additions and 2 deletions
|
@ -63,11 +63,11 @@ class UserMutationInput:
|
||||||
"""Input type for user mutation"""
|
"""Input type for user mutation"""
|
||||||
|
|
||||||
username: str
|
username: str
|
||||||
|
directmemberof: Optional[list[str]] = strawberry.field(default_factory=list)
|
||||||
|
memberof: Optional[list[str]] = strawberry.field(default_factory=list)
|
||||||
password: Optional[str] = None
|
password: Optional[str] = None
|
||||||
displayname: Optional[str] = None
|
displayname: Optional[str] = None
|
||||||
email: Optional[str] = None
|
email: Optional[str] = None
|
||||||
directmemberof: Optional[list[str]] = []
|
|
||||||
memberof: Optional[list[str]] = []
|
|
||||||
|
|
||||||
|
|
||||||
@strawberry.input
|
@strawberry.input
|
||||||
|
|
Loading…
Add table
Reference in a new issue