custom_profile_field: Add "Pronouns" custom field type.

This commit adds "Pronouns" custom profile field type. We also
add "Pronouns" type field in the development environment
This commit is contained in:
Sahil Batra
2022-10-01 15:46:11 +05:30
committed by Tim Abbott
parent ab9c5ae482
commit 2bf70fe4db
9 changed files with 79 additions and 3 deletions

View File

@@ -417,7 +417,7 @@ def get_realm_profile_fields(client: Client) -> None:
def reorder_realm_profile_fields(client: Client) -> None:
# {code_example|start}
# Reorder the custom profile fields in the user's organization.
order = [8, 7, 6, 5, 4, 3, 2, 1]
order = [9, 8, 7, 6, 5, 4, 3, 2, 1]
request = {"order": json.dumps(order)}
result = client.call_endpoint(url="/realm/profile_fields", method="PATCH", request=request)