a fork of iceshrimp.net but a tweaked frontend to my personal liking. waow
fediverse social-media social iceshrimp fedi
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

[backend/web] Fix OAuthAuthorizationServerResponse reporting of grant types supported

pancakes 0dbff7de ba1b7e96

+2 -1
+2 -1
Iceshrimp.Backend/Controllers/Mastodon/Schemas/OAuthAuthorizationServerResponse.cs
··· 19 19 20 20 [J("response_modes_supported")] public List<string> ResponseModesSupported => ["query", "form_post"]; 21 21 22 - [J("grant_types_supported")] public List<string> GrantTypesSupported => ["client_credentials"]; 22 + [J("grant_types_supported")] 23 + public List<string> GrantTypesSupported => ["authorization_code", "client_credentials"]; 23 24 24 25 [J("token_endpoint_auth_methods_supported")] 25 26 public List<string> TokenEndpointAuthMethodsSupported => ["client_secret_post"];