feat: implement CommaDelimitedArrayModelBinderProvider

This commit is contained in:
github@esslinger.dev
2020-10-02 18:26:48 +02:00
parent 4b4c74bdcd
commit 9aad772288
3 changed files with 33 additions and 1 deletions

View File

@@ -379,7 +379,7 @@ namespace Jellyfin.Api.Controllers
public ActionResult PostCapabilities(
[FromQuery] string? id,
[FromQuery] string? playableMediaTypes,
[FromQuery][ModelBinder(typeof(CommaDelimitedArrayModelBinder))] GeneralCommandType[] supportedCommands,
[FromQuery] GeneralCommandType[] supportedCommands,
[FromQuery] bool supportsMediaControl = false,
[FromQuery] bool supportsSync = false,
[FromQuery] bool supportsPersistentIdentifier = true)