Removing all the meta agile and git stuff

This commit is contained in:
Jonathan
2025-06-13 18:39:11 -04:00
parent df5c5480d8
commit c95ee06449
22 changed files with 2 additions and 764 deletions
+1 -8
View File
@@ -5,7 +5,6 @@ namespace Services.Website;
public class SearchService : ISearchService
{
private readonly IDocumentationService documentationService;
private readonly INoteService noteService;
@@ -13,14 +12,10 @@ public class SearchService : ISearchService
private bool isLoaded;
public SearchService(IWebsiteService websiteService, INoteService noteService,
IDocumentationService documentationService)
public SearchService(IWebsiteService websiteService, INoteService noteService)
{
this.websiteService = websiteService;
this.noteService = noteService;
this.documentationService = documentationService;
// All Unit Data
}
public List<SearchPointModel> SearchPoints { get; set; } = new();
@@ -47,12 +42,10 @@ public class SearchService : ISearchService
{
await websiteService.Load();
await noteService.Load();
await documentationService.Load();
Searches.Add("Pages", new List<SearchPointModel>());
Searches.Add("Notes", new List<SearchPointModel>());
Searches.Add("Documents", new List<SearchPointModel>());
Searches.Add("Entities", new List<SearchPointModel>());
foreach (var webPage in websiteService.WebPageModels)