diff options
| author | David <daullmer@gmail.com> | 2020-06-07 15:33:54 +0200 |
|---|---|---|
| committer | David <daullmer@gmail.com> | 2020-06-07 15:33:54 +0200 |
| commit | f3029428cd118b34d73706fdd85cc3918b312a86 (patch) | |
| tree | 6edc7aef27e7c563a61ca417cab55b4455c54b0c /Jellyfin.Api/Controllers/SearchController.cs | |
| parent | 638cfa32abc3ffd61119f774ffc5a0f5a490d3e9 (diff) | |
Fix suggestions
Diffstat (limited to 'Jellyfin.Api/Controllers/SearchController.cs')
| -rw-r--r-- | Jellyfin.Api/Controllers/SearchController.cs | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Jellyfin.Api/Controllers/SearchController.cs b/Jellyfin.Api/Controllers/SearchController.cs index 15a650bf9..2ee3ef25b 100644 --- a/Jellyfin.Api/Controllers/SearchController.cs +++ b/Jellyfin.Api/Controllers/SearchController.cs @@ -10,9 +10,9 @@ using MediaBrowser.Controller.Entities.Audio; using MediaBrowser.Controller.Entities.TV; using MediaBrowser.Controller.Library; using MediaBrowser.Controller.LiveTv; -using MediaBrowser.Controller.Net; using MediaBrowser.Model.Entities; using MediaBrowser.Model.Search; +using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; @@ -22,7 +22,7 @@ namespace Jellyfin.Api.Controllers /// Search controller. /// </summary> [Route("/Search/Hints")] - [Authenticated] + [Authorize] public class SearchController : BaseJellyfinApiController { private readonly ISearchEngine _searchEngine; @@ -52,9 +52,9 @@ namespace Jellyfin.Api.Controllers /// <summary> /// Gets the search hint result. /// </summary> - /// <param name="startIndex">The record index to start at. All items with a lower index will be dropped from the results.</param> - /// <param name="limit">The maximum number of records to return.</param> - /// <param name="userId">Supply a user id to search within a user's library or omit to search all.</param> + /// <param name="startIndex">Optional. The record index to start at. All items with a lower index will be dropped from the results.</param> + /// <param name="limit">Optional. The maximum number of records to return.</param> + /// <param name="userId">Optional. Supply a user id to search within a user's library or omit to search all.</param> /// <param name="searchTerm">The search term to filter on.</param> /// <param name="includePeople">Optional filter whether to include people.</param> /// <param name="includeMedia">Optional filter whether to include media.</param> @@ -117,11 +117,11 @@ namespace Jellyfin.Api.Controllers IsSports = isSports }); - return Ok(new SearchHintResult + return new SearchHintResult { TotalRecordCount = result.TotalRecordCount, SearchHints = result.Items.Select(GetSearchHintResult).ToArray() - }); + }; } /// <summary> |
