From 40cd3bfeb404caedfbb24964f3724a7897f36129 Mon Sep 17 00:00:00 2001 From: Derek Holloway Date: Tue, 26 Aug 2025 17:29:04 -0700 Subject: [PATCH] Add routes and update todo --- ToDo.yaml | 9 +++++++++ src/Client/src/app/app.routes.ts | 6 ++++++ 2 files changed, 15 insertions(+) diff --git a/ToDo.yaml b/ToDo.yaml index 88a1556..23c0bc9 100755 --- a/ToDo.yaml +++ b/ToDo.yaml @@ -28,6 +28,11 @@ Client: Allow users to look up jobs and apply [ Boost visibility | Completely manual ] Mark ghost listings to allow users to be informed and put companies on blast + resume/viewer: + CSS is broken + Company needs to be able to add notes to resume + Company needs to be able to add a rating to the resume + company/editor: Keyboard Tab key does nothing Format phone number for database @@ -37,6 +42,10 @@ Client: resume/editor: There is no data validation + application/viewer: + need to make look better for companies to sort + need to show notes and rating properly + Company: Need to impliment Add employee Need to impliment Remove employee diff --git a/src/Client/src/app/app.routes.ts b/src/Client/src/app/app.routes.ts index b221d22..bd5275b 100644 --- a/src/Client/src/app/app.routes.ts +++ b/src/Client/src/app/app.routes.ts @@ -8,15 +8,21 @@ import { CompanyEditorComponent } from './pages/company/editor/editor.component' import { JobViewerComponent } from './pages/jobs/viewer/jobviewer.component'; import { CompanyComponent } from './pages/company/company.component'; import { ResumesEditorComponent } from './pages/resumes/editor/editor.component'; +import { AppViewerComponent } from './pages/applicationviewer/appviewer.component'; +import { ResumesViewerComponent } from './pages/resumes/viewer/viewer.component'; export const routes: Routes = [ // Home { path: "", component: HomeComponent }, + // Application + { path: "application/viewer", component: AppViewerComponent }, + // Resumes { path: "resumes", component: ResumesComponent }, { path: "resumes/editor", component: ResumesEditorComponent }, + { path: "resumes/viewer", component: ResumesViewerComponent }, // Jobs { path: "jobs", component: JobsComponent },