diff --git a/devdocs/todo.txt b/devdocs/todo.txt index 0d1ebaa6..af0b5f27 100644 --- a/devdocs/todo.txt +++ b/devdocs/todo.txt @@ -31,8 +31,8 @@ IMMEDIATE ITEMS: - Search and search text indexing - Add tests using widget which now sports a Notes property - - Add code to do actual search and return results and routes (tags need support too as per search specs) - - Add tests for searching and routes + - Add code search routes + - Add tests for searching and routes, test all variants of search including rights related stuff - Update all the seeder code to add search indexing so can properly test huge search datasets - Need to find a way to add random text to Notes fields that varies but has some overlap ideally diff --git a/server/AyaNova/biz/Search.cs b/server/AyaNova/biz/Search.cs index 37465daf..ac976605 100644 --- a/server/AyaNova/biz/Search.cs +++ b/server/AyaNova/biz/Search.cs @@ -106,15 +106,6 @@ namespace AyaNova.Biz public long Id { get; set; } } - // //Class to hold temporary matches during processing - // public class MatchingObject - // { - // public bool NameMatch { get; set; } - // public bool TagMatch { get; set; } - // public AyaTypeId TypeAndId { get; set; } - // } - -