-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Adds status banner component * Adds outlined variant to status banner * Build storybook files * Build storybook files * Builds storybook * Test Chromatic GitHub Action * Tests branch * Fix for chromatic github action * Removes index.html from feature branch; adds workingdir params to chromatic workflow file * Adds src to install depency command * Removes src from run command * Testing Chromatic regression testing * Finish up status banner * Adds status variant to Status Banner. Fixes colors, outline variant styling. * Tests Chromatic build to feature branch; resizes status banner title as part of test * Finishing touches to status banner * Clean up status banner folder/package.json chromatic script command * Enlargen, bold status banner title for demo * revert back to original * add await to signin * add await to signin * upd TokenService to use issuer token_endpoint * add debug for token svc * finish adding token endpoint to Token service * add server-side rendering API ROOT * refactor the keycloak services * refactor the keycloak services * refactor the keycloak services * fix crashing bug with delete access * refactor the issuer and uma2 services, updates to whitelist * upd cicd deploy with SSR_API_ROOT * Add queries to whitelist * update whitelist * update whitelist * upd whitelist and permissions * upd UI for environment plugins * upd to env plugins for jwt-keycloak template * upd whitelist * better handling of my access requests * refactor the access mgr and credential admin * adj credential issuer retrieval * upd whitelist * cleanup poc manager pages * upd auth profile failure messages * fix error on environment detail * adj authz matrix * upd whitelist and upd business profile handling * upd scope retrieval and consumer list * fix service account list query * upd whitelists * updated data rules with Blob list type to link blob object to Activity * create connectExclusiveOne function to return one record to connect. Updated data rules to use the new function to connect Blob record to Activity record * fix the ci remove to remote feeder deployment * added label list * Removes storybook build files * upd docker compose fix * implement audience client mapper (#219) Implement audience client mapper * minor fix for publishing auth profile with client mapper Co-authored-by: Justin Tendeck <[email protected]> Co-authored-by: Nithin Shekar Kuruba <[email protected]>
- Loading branch information
1 parent
25bbc8e
commit f8c3454
Showing
33 changed files
with
121,479 additions
and
40,755 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# name of our action | ||
name: "Chromatic Deployment" | ||
# the event that will trigger the action | ||
on: | ||
push: | ||
branches: | ||
- 'feature/**' | ||
pull_request: | ||
branches: | ||
- dev | ||
|
||
# what the action will do | ||
jobs: | ||
test: | ||
# the operating system it will run on | ||
runs-on: ubuntu-latest | ||
defaults: | ||
run: | ||
working-directory: ./src/ | ||
# the list of steps that the action will go through | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- run: yarn | ||
- uses: chromaui/action@v1 | ||
# options required to the GitHub chromatic action | ||
with: | ||
workingDir: ./src/ | ||
# our project token, to see how to obtain it | ||
# refer to https://storybook.js.org/tutorials/intro-to-storybook/react/en/deploy/ | ||
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }} | ||
token: ${{ secrets.GITHUB_TOKEN }} |
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
30 changes: 30 additions & 0 deletions
30
src/authz/graphql-whitelist/httplocalhost4180managerauthorizationprofiles-f8e05c.gql
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,30 @@ | ||
|
||
query GetCredentialIssuer($id: ID!) { | ||
OwnedCredentialIssuer(where: { id: $id }) { | ||
id | ||
name | ||
flow | ||
mode | ||
apiKeyName | ||
clientAuthenticator | ||
clientRoles | ||
clientMappers | ||
availableScopes | ||
resourceScopes | ||
resourceType | ||
resourceAccessScope | ||
environmentDetails | ||
owner { | ||
id | ||
name | ||
username | ||
} | ||
environments { | ||
name | ||
product { | ||
name | ||
} | ||
} | ||
} | ||
} |
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,20 @@ | ||
export function connectExclusiveOne( | ||
keystone: any, | ||
transformInfo: any, | ||
currentData: any, | ||
inputData: any, | ||
fieldKey: string | ||
) { | ||
if ( | ||
currentData != null && | ||
currentData[fieldKey] && | ||
'id' in currentData[fieldKey] && | ||
currentData[fieldKey]['id'] == inputData[fieldKey + '_ids'][0] | ||
) { | ||
return null; | ||
} | ||
return { | ||
// assuming there will be just one id | ||
connect: { id: inputData[fieldKey + '_ids'][0] }, | ||
}; | ||
} |
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 |
---|---|---|
@@ -1,31 +1,17 @@ | ||
export { | ||
alwaysTrue | ||
} from './alwaysTrue' | ||
export { alwaysTrue } from './alwaysTrue'; | ||
|
||
export { | ||
alwaysFalse | ||
} from './alwaysFalse' | ||
export { alwaysFalse } from './alwaysFalse'; | ||
|
||
export { | ||
connectExclusiveList | ||
} from './connectExclusiveList' | ||
export { connectExclusiveList } from './connectExclusiveList'; | ||
|
||
export { | ||
connectMany | ||
} from './connectMany' | ||
export { connectExclusiveOne } from './connectExclusiveOne'; | ||
|
||
export { | ||
connectOne | ||
} from './connectOne' | ||
export { connectMany } from './connectMany'; | ||
|
||
export { | ||
toStringDefaultArray | ||
} from './toStringDefaultArray' | ||
export { connectOne } from './connectOne'; | ||
|
||
export { | ||
toString, | ||
} from './toString' | ||
export { toStringDefaultArray } from './toStringDefaultArray'; | ||
|
||
export { | ||
mapNamespace, | ||
} from './mapNamespace' | ||
export { toString } from './toString'; | ||
|
||
export { mapNamespace } from './mapNamespace'; |
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 |
---|---|---|
@@ -1,17 +1,15 @@ | ||
const { | ||
Text | ||
} = require('@keystonejs/fields'); | ||
const { Text } = require('@keystonejs/fields'); | ||
|
||
module.exports = { | ||
fields: { | ||
ref: { | ||
type: Text, | ||
isRequired: true, | ||
isUnique: true | ||
type: Text, | ||
isRequired: true, | ||
isUnique: true, | ||
}, | ||
blob: { | ||
type: Text, | ||
isRequired: true | ||
} | ||
} | ||
isRequired: true, | ||
}, | ||
}, | ||
}; |
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,14 @@ | ||
const { Text } = require('@keystonejs/fields'); | ||
|
||
module.exports = { | ||
fields: { | ||
name: { | ||
type: Text, | ||
isRequired: true, | ||
}, | ||
value: { | ||
type: Text, | ||
isRequired: true, | ||
}, | ||
}, | ||
}; |
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 @@ | ||
export { default } from './status-banner'; |
Oops, something went wrong.