feat(zitadel): change the default value of the username to the key instead of the email.
This should ensure that binding to the apps goes more smoothly
This commit is contained in:
parent
7100d1c59c
commit
8104ba7e93
1 changed files with 3 additions and 3 deletions
|
|
@ -165,10 +165,10 @@ in
|
||||||
|
|
||||||
userName = mkOption {
|
userName = mkOption {
|
||||||
type = types.nullOr types.str;
|
type = types.nullOr types.str;
|
||||||
default = cfg.organization.${org}.user.${username}.email;
|
default = username;
|
||||||
example = "someone@some.domain";
|
example = "some_user_name";
|
||||||
description = ''
|
description = ''
|
||||||
Username. Default value is the user's email, you can overwrite that by setting this option
|
Username. Default value is the key of the config object you created, you can overwrite that by setting this option
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue