Add routes and update todo
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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 },
|
||||
|
||||
Reference in New Issue
Block a user