Skip to content
This repository has been archived by the owner on Mar 19, 2024. It is now read-only.

Commit

Permalink
Merge pull request #392 from owncloud/fix/oidc_no_registration_endpoint
Browse files Browse the repository at this point in the history
Make some fields not mandatory in discovery response
  • Loading branch information
abelgardep authored Apr 22, 2021
2 parents 3f8ddd0 + 8c4a270 commit ccaf5a8
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ import com.squareup.moshi.JsonClass
@JsonClass(generateAdapter = true)
data class OIDCDiscoveryResponse(
val authorization_endpoint: String,
val check_session_iframe: String,
val end_session_endpoint: String,
val check_session_iframe: String?,
val end_session_endpoint: String?,
val issuer: String,
val registration_endpoint: String,
val registration_endpoint: String?,
val response_types_supported: List<String>,
val scopes_supported: List<String>,
val scopes_supported: List<String>?,
val token_endpoint: String,
val token_endpoint_auth_methods_supported: List<String>,
val userinfo_endpoint: String,
val token_endpoint_auth_methods_supported: List<String>?,
val userinfo_endpoint: String?,
)

0 comments on commit ccaf5a8

Please sign in to comment.