-
Notifications
You must be signed in to change notification settings - Fork 732
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #16854 from UdeshAthukorala/custom-text-api
Add Integration tests for Custom Text Management API
- Loading branch information
Showing
7 changed files
with
262 additions
and
3 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
16 changes: 16 additions & 0 deletions
16
...y/integration/test/rest/api/server/branding/preference/management/v1/add-custom-text.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,16 @@ | ||
{ | ||
"type": "ORG", | ||
"name": "WSO2", | ||
"locale": "en-US", | ||
"screen": "login", | ||
"preference": { | ||
"login": "Sign In", | ||
"welcome": "Welcome", | ||
"account.linking": "Account Linking", | ||
"username": "Username", | ||
"email.username": "Email address", | ||
"back.to.sign.in": "Back to Sign In", | ||
"or": "Or", | ||
"dont.have.an.account": "Don't have an account?" | ||
} | ||
} |
7 changes: 7 additions & 0 deletions
7
...t/rest/api/server/branding/preference/management/v1/add-empty-custom-text-preference.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,7 @@ | ||
{ | ||
"type": "ORG", | ||
"name": "organization-name", | ||
"locale": "en-US", | ||
"screen": "login", | ||
"preference": { } | ||
} |
22 changes: 22 additions & 0 deletions
22
...ntegration/test/rest/api/server/branding/preference/management/v1/update-custom-text.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,22 @@ | ||
{ | ||
"type": "ORG", | ||
"name": "WSO2", | ||
"locale": "en-US", | ||
"screen": "login", | ||
"preference": { | ||
"login": "Sign In", | ||
"welcome": "Welcome", | ||
"account.linking": "Account Linking", | ||
"username": "Username", | ||
"email.username": "Email address", | ||
"back.to.sign.in": "Back to Sign In", | ||
"or": "Or", | ||
"dont.have.an.account": "Don't have an account?", | ||
"password": "Password", | ||
"confirm.password": "Confirm Password", | ||
"email": "Email", | ||
"enter.your.email": "Enter your email", | ||
"enter.your.username": "Enter your username", | ||
"enter.your.password": "Enter your password" | ||
} | ||
} |
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