Add routes and update todo

This commit is contained in:
2025-08-26 17:29:04 -07:00
parent d89b10b345
commit 40cd3bfeb4
2 changed files with 15 additions and 0 deletions
+9
View File
@@ -28,6 +28,11 @@ Client:
Allow users to look up jobs and apply [ Boost visibility | Completely manual ] 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 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: company/editor:
Keyboard Tab key does nothing Keyboard Tab key does nothing
Format phone number for database Format phone number for database
@@ -37,6 +42,10 @@ Client:
resume/editor: resume/editor:
There is no data validation There is no data validation
application/viewer:
need to make look better for companies to sort
need to show notes and rating properly
Company: Company:
Need to impliment Add employee Need to impliment Add employee
Need to impliment Remove employee Need to impliment Remove employee
+6
View File
@@ -8,15 +8,21 @@ import { CompanyEditorComponent } from './pages/company/editor/editor.component'
import { JobViewerComponent } from './pages/jobs/viewer/jobviewer.component'; import { JobViewerComponent } from './pages/jobs/viewer/jobviewer.component';
import { CompanyComponent } from './pages/company/company.component'; import { CompanyComponent } from './pages/company/company.component';
import { ResumesEditorComponent } from './pages/resumes/editor/editor.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 = [ export const routes: Routes = [
// Home // Home
{ path: "", component: HomeComponent }, { path: "", component: HomeComponent },
// Application
{ path: "application/viewer", component: AppViewerComponent },
// Resumes // Resumes
{ path: "resumes", component: ResumesComponent }, { path: "resumes", component: ResumesComponent },
{ path: "resumes/editor", component: ResumesEditorComponent }, { path: "resumes/editor", component: ResumesEditorComponent },
{ path: "resumes/viewer", component: ResumesViewerComponent },
// Jobs // Jobs
{ path: "jobs", component: JobsComponent }, { path: "jobs", component: JobsComponent },