|
|
|
@ -65,7 +65,7 @@ namespace Jellyfin.Api.Controllers
|
|
|
|
|
/// <returns>An <see cref="OkResult"/> containing the user views.</returns>
|
|
|
|
|
[HttpGet("Users/{userId}/Views")]
|
|
|
|
|
[ProducesResponseType(StatusCodes.Status200OK)]
|
|
|
|
|
public async Task<ActionResult<QueryResult<BaseItemDto>>> GetUserViews(
|
|
|
|
|
public QueryResult<BaseItemDto> GetUserViews(
|
|
|
|
|
[FromRoute, Required] Guid userId,
|
|
|
|
|
[FromQuery] bool? includeExternalContent,
|
|
|
|
|
[FromQuery, ModelBinder(typeof(CommaDelimitedArrayModelBinder))] string[] presetViews,
|
|
|
|
@ -87,12 +87,6 @@ namespace Jellyfin.Api.Controllers
|
|
|
|
|
query.PresetViews = presetViews;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var app = (await _authContext.GetAuthorizationInfo(Request).ConfigureAwait(false)).Client ?? string.Empty;
|
|
|
|
|
if (app.IndexOf("emby rt", StringComparison.OrdinalIgnoreCase) != -1)
|
|
|
|
|
{
|
|
|
|
|
query.PresetViews = new[] { CollectionType.Movies, CollectionType.TvShows };
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var folders = _userViewManager.GetUserViews(query);
|
|
|
|
|
|
|
|
|
|
var dtoOptions = new DtoOptions().AddClientFields(Request);
|
|
|
|
|