Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#### What's Changed --- ##### `GET` /providers/oauth2/{id}/ ###### Return Type: Changed response : **200 OK** * Changed content type : `application/json` New required properties: - `redirect_uris` * Changed property `redirect_uris` (string -> array) ##### `PUT` /providers/oauth2/{id}/ ###### Request: Changed content type : `application/json` New required properties: - `redirect_uris` * Changed property `redirect_uris` (string -> array) ###### Return Type: Changed response : **200 OK** * Changed content type : `application/json` New required properties: - `redirect_uris` * Changed property `redirect_uris` (string -> array) ##### `PATCH` /providers/oauth2/{id}/ ###### Request: Changed content type : `application/json` * Changed property `redirect_uris` (string -> array) ###### Return Type: Changed response : **200 OK** * Changed content type : `application/json` New required properties: - `redirect_uris` * Changed property `redirect_uris` (string -> array) ##### `POST` /providers/oauth2/ ###### Request: Changed content type : `application/json` New required properties: - `redirect_uris` * Changed property `redirect_uris` (string -> array) ###### Return Type: Changed response : **201 Created** * Changed content type : `application/json` New required properties: - `redirect_uris` * Changed property `redirect_uris` (string -> array) ##### `GET` /providers/oauth2/ ###### Parameters: Deleted: `redirect_uris` in `query` ###### Return Type: Changed response : **200 OK** * Changed content type : `application/json` * Changed property `results` (array) Changed items (object): > OAuth2Provider Serializer New required properties: - `redirect_uris` * Changed property `redirect_uris` (string -> array) ##### `GET` /providers/proxy/ ###### Parameters: Deleted: `redirect_uris__iexact` in `query` ##### `GET` /oauth2/access_tokens/{id}/ ###### Return Type: Changed response : **200 OK** * Changed content type : `application/json` * Changed property `provider` (object) > OAuth2Provider Serializer New required properties: - `redirect_uris` * Changed property `redirect_uris` (string -> array) ##### `GET` /oauth2/authorization_codes/{id}/ ###### Return Type: Changed response : **200 OK** * Changed content type : `application/json` * Changed property `provider` (object) > OAuth2Provider Serializer New required properties: - `redirect_uris` * Changed property `redirect_uris` (string -> array) ##### `GET` /oauth2/refresh_tokens/{id}/ ###### Return Type: Changed response : **200 OK** * Changed content type : `application/json` * Changed property `provider` (object) > OAuth2Provider Serializer New required properties: - `redirect_uris` * Changed property `redirect_uris` (string -> array) ##### `PUT` /core/transactional/applications/ ###### Request: Changed content type : `application/json` * Changed property `provider` (object) Updated `authentik_providers_oauth2.oauth2provider` provider_model: New required properties: - `redirect_uris` * Changed property `redirect_uris` (string -> array) ##### `GET` /oauth2/access_tokens/ ###### Return Type: Changed response : **200 OK** * Changed content type : `application/json` * Changed property `results` (array) Changed items (object): > Serializer for BaseGrantModel and RefreshToken * Changed property `provider` (object) > OAuth2Provider Serializer New required properties: - `redirect_uris` * Changed property `redirect_uris` (string -> array) ##### `GET` /oauth2/authorization_codes/ ###### Return Type: Changed response : **200 OK** * Changed content type : `application/json` * Changed property `results` (array) Changed items (object): > Serializer for BaseGrantModel and ExpiringBaseGrant * Changed property `provider` (object) > OAuth2Provider Serializer New required properties: - `redirect_uris` * Changed property `redirect_uris` (string -> array) ##### `GET` /oauth2/refresh_tokens/ ###### Return Type: Changed response : **200 OK** * Changed content type : `application/json` * Changed property `results` (array) Changed items (object): > Serializer for BaseGrantModel and RefreshToken * Changed property `provider` (object) > OAuth2Provider Serializer New required properties: - `redirect_uris` * Changed property `redirect_uris` (string -> array)
- Loading branch information