forked from 2600hz/kazoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
HELP-42761: allow username to be changed when using SSO only (2600hz#…
…5572) * HELP-42761: allow username to be changed when using SSO only * HELP-42761: formatting
- Loading branch information
1 parent
fa69d98
commit 4f7fd7c
Showing
8 changed files
with
394 additions
and
181 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
23 changes: 23 additions & 0 deletions
23
applications/crossbar/priv/couchdb/schemas/system_config.crossbar.users.json
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-04/schema#", | ||
"_id": "system_config.crossbar.users", | ||
"description": "Schema for crossbar.users system_config", | ||
"properties": { | ||
"generate_password_if_empty": { | ||
"default": false, | ||
"description": "crossbar users generate_password_if_empty", | ||
"type": "boolean" | ||
}, | ||
"generate_username_if_empty": { | ||
"default": true, | ||
"description": "crossbar users generate_username_if_empty", | ||
"type": "boolean" | ||
}, | ||
"reset_identity_secret_on_rehash": { | ||
"default": true, | ||
"description": "crossbar users reset_identity_secret_on_rehash", | ||
"type": "boolean" | ||
} | ||
}, | ||
"type": "object" | ||
} |
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.