-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1eed729
commit 52207f7
Showing
13 changed files
with
162 additions
and
9 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
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
60 changes: 60 additions & 0 deletions
60
extensions/oidc/deployment/src/main/resources/dev-service/upconfig.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,60 @@ | ||
{ | ||
"attributes": [ | ||
{ | ||
"name": "username", | ||
"displayName": "${username}", | ||
"permissions": { | ||
"view": ["admin", "user"], | ||
"edit": ["admin", "user"] | ||
}, | ||
"validations": { | ||
"length": { "min": 3, "max": 255 }, | ||
"username-prohibited-characters": {}, | ||
"up-username-not-idn-homograph": {} | ||
} | ||
}, | ||
{ | ||
"name": "email", | ||
"displayName": "${email}", | ||
"permissions": { | ||
"view": ["admin", "user"], | ||
"edit": ["admin", "user"] | ||
}, | ||
"validations": { | ||
"email" : {}, | ||
"length": { "max": 255 } | ||
} | ||
}, | ||
{ | ||
"name": "firstName", | ||
"displayName": "${firstName}", | ||
"permissions": { | ||
"view": ["admin", "user"], | ||
"edit": ["admin", "user"] | ||
}, | ||
"validations": { | ||
"length": { "max": 255 }, | ||
"person-name-prohibited-characters": {} | ||
} | ||
}, | ||
{ | ||
"name": "lastName", | ||
"displayName": "${lastName}", | ||
"permissions": { | ||
"view": ["admin", "user"], | ||
"edit": ["admin", "user"] | ||
}, | ||
"validations": { | ||
"length": { "max": 255 }, | ||
"person-name-prohibited-characters": {} | ||
} | ||
} | ||
], | ||
"groups": [ | ||
{ | ||
"name": "user-metadata", | ||
"displayHeader": "User metadata", | ||
"displayDescription": "Attributes, which refer to user metadata" | ||
} | ||
] | ||
} |
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
1 change: 1 addition & 0 deletions
1
integration-tests/oidc-code-flow/src/main/resources/application.properties
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
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,60 @@ | ||
{ | ||
"attributes": [ | ||
{ | ||
"name": "username", | ||
"displayName": "${username}", | ||
"permissions": { | ||
"view": ["admin", "user"], | ||
"edit": ["admin", "user"] | ||
}, | ||
"validations": { | ||
"length": { "min": 3, "max": 255 }, | ||
"username-prohibited-characters": {}, | ||
"up-username-not-idn-homograph": {} | ||
} | ||
}, | ||
{ | ||
"name": "email", | ||
"displayName": "${email}", | ||
"permissions": { | ||
"view": ["admin", "user"], | ||
"edit": ["admin", "user"] | ||
}, | ||
"validations": { | ||
"email" : {}, | ||
"length": { "max": 255 } | ||
} | ||
}, | ||
{ | ||
"name": "firstName", | ||
"displayName": "${firstName}", | ||
"permissions": { | ||
"view": ["admin", "user"], | ||
"edit": ["admin", "user"] | ||
}, | ||
"validations": { | ||
"length": { "max": 255 }, | ||
"person-name-prohibited-characters": {} | ||
} | ||
}, | ||
{ | ||
"name": "lastName", | ||
"displayName": "${lastName}", | ||
"permissions": { | ||
"view": ["admin", "user"], | ||
"edit": ["admin", "user"] | ||
}, | ||
"validations": { | ||
"length": { "max": 255 }, | ||
"person-name-prohibited-characters": {} | ||
} | ||
} | ||
], | ||
"groups": [ | ||
{ | ||
"name": "user-metadata", | ||
"displayHeader": "User metadata", | ||
"displayDescription": "Attributes, which refer to user metadata" | ||
} | ||
] | ||
} |
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