-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✨ Get and search users applying privacy settings 🗃️ (#6966)
- Loading branch information
Showing
24 changed files
with
886 additions
and
238 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,7 @@ | |
) | ||
from ..users import UserID, UserNameID | ||
from ..utils.common_validators import create__check_only_one_is_set__root_validator | ||
from ._base import InputSchema, OutputSchema | ||
from ._base import InputSchema, OutputSchema, OutputSchemaWithoutCamelCase | ||
|
||
S = TypeVar("S", bound=BaseModel) | ||
|
||
|
@@ -248,8 +248,7 @@ def from_model( | |
) | ||
|
||
|
||
class GroupUserGet(BaseModel): | ||
# OutputSchema | ||
class GroupUserGet(OutputSchemaWithoutCamelCase): | ||
|
||
# Identifiers | ||
id: Annotated[UserID | None, Field(description="the user's id")] = None | ||
|
@@ -275,7 +274,14 @@ class GroupUserGet(BaseModel): | |
] = None | ||
|
||
# Access Rights | ||
access_rights: GroupAccessRights = Field(..., alias="accessRights") | ||
access_rights: Annotated[ | ||
GroupAccessRights | None, | ||
Field( | ||
alias="accessRights", | ||
description="If group is standard, these are these are the access rights of the user to it." | ||
"None if primary group.", | ||
), | ||
] = None | ||
|
||
model_config = ConfigDict( | ||
populate_by_name=True, | ||
|
@@ -293,7 +299,23 @@ class GroupUserGet(BaseModel): | |
"write": False, | ||
"delete": False, | ||
}, | ||
} | ||
}, | ||
"examples": [ | ||
# unique member on a primary group with two different primacy settings | ||
{ | ||
"id": "16", | ||
"userName": "mrprivate", | ||
"gid": "55", | ||
}, | ||
{ | ||
"id": "56", | ||
"userName": "mrpublic", | ||
"login": "[email protected]", | ||
"first_name": "Mr", | ||
"last_name": "Public", | ||
"gid": "42", | ||
}, | ||
], | ||
}, | ||
) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.