Skip to content

Commit

Permalink
Merge pull request #81 from DivyaPremanantha/main
Browse files Browse the repository at this point in the history
Fix startup issues
  • Loading branch information
SachiniSiriwardene authored Dec 12, 2024
2 parents f74bc68 + 254846c commit d3c64cb
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 46 deletions.
16 changes: 16 additions & 0 deletions QuickStart.md
Original file line number Diff line number Diff line change
Expand Up @@ -331,6 +331,22 @@ Click update.
"adminRole": "admin",
"subscriberRole": "Interna/subscriber",
"superAdminRole": "superAdmin",
"authenticatedPages": [
"/*/configure",
"/portal",
"/*/applications",
"/*/applications/*",
"/*/myAPIs",
"/*/myAPIs/*"
],
"authorizedPages": [
"/*/applications",
"/*/applications/*",
"/*/configure",
"/portal",
"/*/myAPIs",
"/*/myAPIs/*"
]
````
API request for creating IDP in developer portal
``` bash
Expand Down
40 changes: 20 additions & 20 deletions artifacts/data-dump.sql

Large diffs are not rendered by default.

38 changes: 12 additions & 26 deletions config.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"port": 3000,
"pathToContent": "../src/",
"mode": "production",
"controlPlane" : {
"controlPlane": {
"url": "https://127.0.0.1:9443/api/am/devportal/v3",
"disableCertValidation": true,
"pathToCertificate": "../api-developer-portal/conf/security/client-truststore.pem"
Expand All @@ -17,7 +17,7 @@
"providerURL": {
"AWS": "https://aws.amazon.com"
},
"identityProvider" : {
"identityProvider": {
"name": "IS",
"issuer": "https://127.0.0.1:9443/oauth2/token",
"authorizationURL": "https://localhost:9443/oauth2/authorize",
Expand All @@ -29,27 +29,13 @@
"signUpURL": "",
"logoutURL": "https://localhost:9443/oidc/logout",
"logoutRedirectURI": "http://localhost:3000/ACME"
},
"roleClaim": "roles",
"orgIDClaim": "organizationID",
"groupsClaim": "groups",
"adminRole": "admin",
"subscriberRole": "Internal/subscriber",
"superAdminRole": "superAdmin",
"authenticatedPages": [
"/*/configure",
"/portal",
"/*/applications",
"/*/applications/*",
"/*/myAPIs",
"/*/myAPIs/*"
],
"authorizedPages": [
"/*/applications",
"/*/applications/*",
"/*/configure",
"/portal",
"/*/myAPIs",
"/*/myAPIs/*"
]
}
},
"roleClaim": "roles",
"orgIDClaim": "organizationID",
"groupsClaim": "groups",
"adminRole": "admin",
"subscriberRole": "Internal/subscriber",
"superAdminRole": "superAdmin",
"authenticatedPages": [],
"authorizedPages": []
}

0 comments on commit d3c64cb

Please sign in to comment.