docs: Contribution guidelines (#7443)

* docs: gender neutrality

* docs: gender neutrality

* docs: gender neutrality

* Update docs/docs/concepts/features/identity-brokering.md

Co-authored-by: Tim Möhlmann <tim+github@zitadel.com>

* Update docs/docs/guides/integrate/login-ui/mfa.mdx

Co-authored-by: Tim Möhlmann <tim+github@zitadel.com>

* Update docs/docs/guides/integrate/login-ui/passkey.mdx

Co-authored-by: Tim Möhlmann <tim+github@zitadel.com>

* Update internal/static/i18n/en.yaml

Co-authored-by: Tim Möhlmann <tim+github@zitadel.com>

* Update internal/static/i18n/en.yaml

Co-authored-by: Tim Möhlmann <tim+github@zitadel.com>

---------

Co-authored-by: Tim Möhlmann <tim+github@zitadel.com>
This commit is contained in:
Fabi
2024-02-26 14:11:09 +01:00
committed by GitHub
parent 2731099db3
commit 0542b29517
24 changed files with 57 additions and 39 deletions

View File

@@ -4440,7 +4440,7 @@ message SetUpOrgRequest {
string display_name = 4 [
(validate.rules).string = {max_len: 200},
(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
description: "a user can set his display name if nothing is set ZITADEL computes \"first_name last_name\"";
description: "a user can set the display name if nothing is set ZITADEL computes \"first_name last_name\"";
max_length: 200;
example: "\"Gigi Giraffe\"";
}
@@ -6373,7 +6373,7 @@ message GetLoginPolicyResponse {
message UpdateLoginPolicyRequest {
bool allow_username_password = 1 [
(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
description: "defines if a user is allowed to log in with his username and password"
description: "defines if a user is allowed to log in with username and password"
}
];
bool allow_register = 2 [

View File

@@ -159,7 +159,7 @@ message LoginPolicy {
zitadel.v1.ObjectDetails details = 1;
bool allow_username_password = 2 [
(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
description: "defines if a user is allowed to log in with his username and password"
description: "defines if a user is allowed to log in with username and password"
}
];
bool allow_register = 3 [

View File

@@ -11,7 +11,7 @@ import "google/protobuf/duration.proto";
message LoginSettings {
bool allow_username_password = 1 [
(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
description: "defines if a user is allowed to log in with his username and password";
description: "defines if a user is allowed to log in with username and password";
}
];
bool allow_register = 2 [

View File

@@ -108,7 +108,7 @@ message Profile {
];
string display_name = 4 [
(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
description: "a user can set his display name, if nothing is set ZITADEL computes \"first_name last_name\""
description: "a user can set the display name, if nothing is set ZITADEL computes \"first_name last_name\""
example: "\"Gigi Giraffe\"";
}
];
@@ -140,7 +140,7 @@ message Email {
];
bool is_email_verified = 2 [
(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
description: "Is true if the user verified his email or if the email is managed outside ZITADEL"
description: "Is true if the user verified the email or if the email is managed outside ZITADEL"
}
];
}
@@ -154,7 +154,7 @@ message Phone {
];
bool is_phone_verified = 2 [
(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
description: "Is true if the user verified his phone or if the phone is managed outside ZITADEL"
description: "Is true if the user verified the phone or if the phone is managed outside ZITADEL"
}
];
}