diff --git a/services/Directory/FilterLists.Directory.Application/Queries/GetLists.cs b/services/Directory/FilterLists.Directory.Application/Queries/GetLists.cs index 733987679..329a41a8a 100644 --- a/services/Directory/FilterLists.Directory.Application/Queries/GetLists.cs +++ b/services/Directory/FilterLists.Directory.Application/Queries/GetLists.cs @@ -26,11 +26,6 @@ public async Task> 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> ExecuteAsync(CancellationToken ct) /// The identifiers of the Syntaxes implemented by this FilterList. /// The identifiers of the Languages targeted by this FilterList. /// The identifiers of the Tags applied to this FilterList. - /// The primary view URL. /// The identifiers of the Maintainers of this FilterList. public sealed record Response( int Id, @@ -60,6 +54,5 @@ public sealed record Response( IEnumerable SyntaxIds, IEnumerable LanguageIds, IEnumerable TagIds, - Uri? PrimaryViewUrl, IEnumerable MaintainerIds); } \ No newline at end of file