Skip to content

Commit

Permalink
fix: missing initialization for CREATE_SCHOOL_SAGA
Browse files Browse the repository at this point in the history
  • Loading branch information
trev-dev committed Oct 11, 2023
1 parent a73d9d3 commit ad455ce
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions tools/config/update-configmap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,13 @@ curl -sX POST "https://$SOAM_KC/auth/admin/realms/$SOAM_KC_REALM_ID/client-scope
-H "Authorization: Bearer $TKN" \
-d "{\"description\": \"Write MOVE_SCHOOL_SAGA \",\"id\": \"MOVE_SCHOOL_SAGA\",\"name\": \"MOVE_SCHOOL_SAGA\",\"protocol\": \"openid-connect\",\"attributes\" : {\"include.in.token.scope\" : \"true\",\"display.on.consent.screen\" : \"false\"}}"

echo
echo Writing scope CREATE_SCHOOL_SAGA
curl -sX POST "https://$SOAM_KC/auth/admin/realms/$SOAM_KC_REALM_ID/client-scopes" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $TKN" \
-d "{\"description\": \"Write CREATE_SCHOOL_SAGA \",\"id\": \"CREATE_SCHOOL_SAGA\",\"name\": \"CREATE_SCHOOL_SAGA\",\"protocol\": \"openid-connect\",\"attributes\" : {\"include.in.token.scope\" : \"true\",\"display.on.consent.screen\" : \"false\"}}"

echo
echo Writing scope CREATE_SECURE_EXCHANGE_SAGA
curl -sX POST "https://$SOAM_KC/auth/admin/realms/$SOAM_KC_REALM_ID/client-scopes" \
Expand Down

0 comments on commit ad455ce

Please sign in to comment.