fix: open id config

This commit is contained in:
Lakhan Samani
2022-10-16 21:03:37 +05:30
parent 2bd92d6028
commit 3cd99fe5f6
3 changed files with 28 additions and 12 deletions

View File

@@ -14,4 +14,6 @@ const (
ResponseTypeCode = "code"
// For the Implicit grant, use response_type=token to include an access token.
ResponseTypeToken = "token"
// For the Implicit grant of id_token, use response_type=id_token to include an identifier token.
ResponseTypeIDToken = "id_token"
)