[CORL-754] SSO Key Management (#2732)

* feat: initial impl

* feat: clean up redis when keys are deleted

* fix: remove test timeout value
This commit is contained in:
Wyatt Johnson
2020-03-19 20:57:49 +00:00
committed by GitHub
parent 1503b735e5
commit 2dc63d3a27
14 changed files with 1083 additions and 664 deletions
@@ -16,7 +16,7 @@ const AddExpertMutation = createMutation(
(environment: Environment, input: MutationInput<AddExpertMutation>) =>
commitMutationPromiseNormalized<AddExpertMutation>(environment, {
mutation: graphql`
mutation AddExpertMutation($input: AddExpertInput!) {
mutation AddExpertMutation($input: AddStoryExpertInput!) {
addStoryExpert(input: $input) {
story {
id
@@ -16,7 +16,7 @@ const RemoveExpertMutation = createMutation(
(environment: Environment, input: MutationInput<RemoveExpertMutation>) =>
commitMutationPromiseNormalized<RemoveExpertMutation>(environment, {
mutation: graphql`
mutation RemoveExpertMutation($input: RemoveExpertInput!) {
mutation RemoveExpertMutation($input: RemoveStoryExpertInput!) {
removeStoryExpert(input: $input) {
story {
id