@Summary Get OAuth2 client configuration (RFC 7592) @ID get-oauth2-client-configuration @Accept json @Produce json @Tags Enterprise @Param client_id path string true "Client ID" @Success 200 {object} codersdk.OAuth2ClientConfiguration @Router /oauth2/clients/{client_id} [get]
()
| 214 | // @Success 200 {object} codersdk.OAuth2ClientConfiguration |
| 215 | // @Router /oauth2/clients/{client_id} [get] |
| 216 | func (api *API) oauth2ClientConfiguration() http.HandlerFunc { |
| 217 | return oauth2provider.GetClientConfiguration(api.Database) |
| 218 | } |
| 219 | |
| 220 | // @Summary Update OAuth2 client configuration (RFC 7592) |
| 221 | // @ID put-oauth2-client-configuration |
no test coverage detected