Skip to content

Commit

Permalink
Merge pull request #61 from SachiniSiriwardene/release-1.0.0-m1
Browse files Browse the repository at this point in the history
Add mock data
  • Loading branch information
DivyaPremanantha authored Dec 12, 2024
2 parents 4929ea0 + dbdda9c commit f05f571
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 1 deletion.
13 changes: 13 additions & 0 deletions mock/IdentityProvider/identityProvider.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"name": "IS",
"issuer": "https://127.0.0.1:9443/oauth2/token",
"authorizationURL": "https://localhost:9443/oauth2/authorize",
"tokenURL": "https://127.0.0.1:9443/oauth2/token",
"userInfoURL": "https://localhost:9443/oauth2/userinfo",
"clientId": "ClientId",
"callbackURL": "http://localhost:3000/ACME/callback",
"scope": "openid email profile apim:subscribe role",
"signUpURL": "",
"logoutURL": "https://localhost:9443/oidc/logout",
"logoutRedirectURI": "http://localhost:3000/ACME"
}
32 changes: 32 additions & 0 deletions mock/Organization/organizations.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
[
{
"orgId": "4454545",
"orgName": "ACME",
"businessOwner": "Joe",
"businessOwnerContact": "0112345678",
"businessOwnerEmail": "[email protected]",
"devPortalURLIdentifier": "ACME",
"roleClaimName": "roles",
"groupsClaimName": "groups",
"organizationClaimName": "organizationID",
"organizationIdentifier": "ACME",
"adminRole": "admin",
"subscriberRole": "subscriber",
"superAdminRole": "superAdmin"
},
{
"orgId": "4454545",
"orgName": "DEPT",
"businessOwner": "Jane",
"businessOwnerContact": "0112345678",
"businessOwnerEmail": "[email protected]",
"devPortalURLIdentifier": "DEPT",
"roleClaimName": "roles",
"groupsClaimName": "groups",
"organizationClaimName": "organizationID",
"organizationIdentifier": "DEPT",
"adminRole": "admin",
"subscriberRole": "subscriber",
"superAdminRole": "superAdmin"
}
]
1 change: 0 additions & 1 deletion src/partials/header.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
<a class="nav-link" aria-current="page" href="{{baseUrl}}/#">Get started</a> --}}
<a class="nav-link" aria-current="page" href="{{baseUrl}}/applications">Applications</a>
<a class="nav-link" aria-current="page" href="{{baseUrl}}/configure">Add content</a>
<a class="nav-link" aria-current="page" href="/portal">Add corganization</a>
</div>
{{#if profile}}
<div class="container-fluid nav justify-content-end" id="profile-section">
Expand Down

0 comments on commit f05f571

Please sign in to comment.