File tree 3 files changed +4
-3
lines changed
3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ This document contains all the environment variables which are available for thi
105
105
| ` OIDC_ISSUER ` | String | The OIDC issuer URL | |
106
106
| ` OIDC_IDENTIFIER ` | String | The client ID for OIDC | |
107
107
| ` OIDC_SECRET ` | String | The client secret for OIDC | |
108
- | ` OIDC_SCOPES ` | Array of strings | Scopes to request from the OIDC server. | openid, email |
108
+ | ` OIDC_SCOPES ` | Array of strings | Scopes to request from the OIDC server. | [ " openid", " email" ] |
109
109
| ` OIDC_UID_FIELD ` | String | The field to use to determine the user's UID | sub |
110
110
| ` OIDC_EMAIL_ADDRESS_FIELD ` | String | The field to use to determine the user's email address | email |
111
111
| ` OIDC_NAME_FIELD ` | String | The field to use to determine the user's name | name |
Original file line number Diff line number Diff line change @@ -239,7 +239,8 @@ oidc:
239
239
secret :
240
240
# Scopes to request from the OIDC server.
241
241
scopes :
242
- - openid,email
242
+ - openid
243
+ - email
243
244
# The field to use to determine the user's UID
244
245
uid_field : sub
245
246
# The field to use to determine the user's email address
Original file line number Diff line number Diff line change @@ -550,7 +550,7 @@ module Postal
550
550
string :scopes do
551
551
description "Scopes to request from the OIDC server."
552
552
array
553
- default "openid, email"
553
+ default [ "openid" , " email"]
554
554
end
555
555
556
556
string :uid_field do
You can’t perform that action at this time.
0 commit comments