Skip to content

Commit

Permalink
feat(config/flipt.schema.*): add oidc provider scopes property (#1946)
Browse files Browse the repository at this point in the history
  • Loading branch information
Provinite authored Aug 4, 2023
1 parent ce3c806 commit afb9d4f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions config/flipt.schema.cue
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ import "strings"
client_id?: string
client_secret?: string
redirect_address?: string
scopes?: [...string]
}
}

Expand Down
3 changes: 2 additions & 1 deletion config/flipt.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,8 @@
"issuer_url": { "type": "string" },
"client_id": { "type": "string" },
"client_secret": { "type": "string" },
"redirect_address": { "type": "string" }
"redirect_address": { "type": "string" },
"scopes": { "type": "array", "items": { "type": "string" } }
},
"additionalProperties": false
}
Expand Down

0 comments on commit afb9d4f

Please sign in to comment.