mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
refactor(api): rm unused prop
This commit is contained in:
parent
a374c67b4c
commit
d22b26d40a
1 changed files with 0 additions and 7 deletions
|
|
@ -26,11 +26,6 @@ public async Task<List<Response>> ExecuteAsync(CancellationToken ct)
|
|||
f.FilterListTags
|
||||
.OrderBy(ft => ft.TagId)
|
||||
.Select(ft => ft.TagId),
|
||||
f.ViewUrls
|
||||
.OrderBy(u => u.SegmentNumber)
|
||||
.ThenBy(u => u.Primariness)
|
||||
.Select(u => u.Url)
|
||||
.FirstOrDefault(),
|
||||
f.FilterListMaintainers
|
||||
.OrderBy(fm => fm.MaintainerId)
|
||||
.Select(fm => fm.MaintainerId)
|
||||
|
|
@ -50,7 +45,6 @@ public async Task<List<Response>> ExecuteAsync(CancellationToken ct)
|
|||
/// <param name="SyntaxIds" example="[ 3 ]">The identifiers of the Syntaxes implemented by this FilterList.</param>
|
||||
/// <param name="LanguageIds" example="[ 37 ]">The identifiers of the Languages targeted by this FilterList.</param>
|
||||
/// <param name="TagIds" example="[ 2 ]">The identifiers of the Tags applied to this FilterList.</param>
|
||||
/// <param name="PrimaryViewUrl" example="https://easylist.to/easylist/easylist.txt">The primary view URL.</param>
|
||||
/// <param name="MaintainerIds" example="[ 7 ]">The identifiers of the Maintainers of this FilterList.</param>
|
||||
public sealed record Response(
|
||||
int Id,
|
||||
|
|
@ -60,6 +54,5 @@ public sealed record Response(
|
|||
IEnumerable<short> SyntaxIds,
|
||||
IEnumerable<short> LanguageIds,
|
||||
IEnumerable<int> TagIds,
|
||||
Uri? PrimaryViewUrl,
|
||||
IEnumerable<int> MaintainerIds);
|
||||
}
|
||||
Loading…
Reference in a new issue