mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-17 19:54:47 +01:00
Add full stop at end of comments (SA1629)
This commit is contained in:
@@ -18,7 +18,7 @@ using Microsoft.Extensions.Logging;
|
||||
namespace MediaBrowser.Api
|
||||
{
|
||||
/// <summary>
|
||||
/// Class GetSearchHints
|
||||
/// Class GetSearchHints.
|
||||
/// </summary>
|
||||
[Route("/Search/Hints", "GET", Summary = "Gets search hints based on a search term")]
|
||||
public class GetSearchHints : IReturn<SearchHintResult>
|
||||
@@ -31,7 +31,7 @@ namespace MediaBrowser.Api
|
||||
public int? StartIndex { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// The maximum number of items to return
|
||||
/// The maximum number of items to return.
|
||||
/// </summary>
|
||||
/// <value>The limit.</value>
|
||||
[ApiMember(Name = "Limit", Description = "Optional. The maximum number of records to return", IsRequired = false, DataType = "int", ParameterType = "query", Verb = "GET")]
|
||||
@@ -45,7 +45,7 @@ namespace MediaBrowser.Api
|
||||
public Guid UserId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Search characters used to find items
|
||||
/// Search characters used to find items.
|
||||
/// </summary>
|
||||
/// <value>The index by.</value>
|
||||
[ApiMember(Name = "SearchTerm", Description = "The search term to filter on", IsRequired = true, DataType = "string", ParameterType = "query", Verb = "GET")]
|
||||
@@ -104,13 +104,13 @@ namespace MediaBrowser.Api
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Class SearchService
|
||||
/// Class SearchService.
|
||||
/// </summary>
|
||||
[Authenticated]
|
||||
public class SearchService : BaseApiService
|
||||
{
|
||||
/// <summary>
|
||||
/// The _search engine
|
||||
/// The _search engine.
|
||||
/// </summary>
|
||||
private readonly ISearchEngine _searchEngine;
|
||||
private readonly ILibraryManager _libraryManager;
|
||||
|
||||
Reference in New Issue
Block a user