Update routes
This commit is contained in:
@@ -35,4 +35,7 @@ Task:
|
|||||||
Create a server table inside the auth database
|
Create a server table inside the auth database
|
||||||
Point all requests after auth to the correct regional server. -> Currently only Mistox-West exists
|
Point all requests after auth to the correct regional server. -> Currently only Mistox-West exists
|
||||||
|
|
||||||
CompanyConnect | need to lookup company before making a new one
|
CompanyConnect | need to lookup company before making a new one
|
||||||
|
|
||||||
|
Finish Auth setup
|
||||||
|
Make sure autorenew works
|
||||||
@@ -5,9 +5,10 @@ import { ContactComponent } from './pages/legal/contact/contact.component';
|
|||||||
import { PrivacyComponent } from './pages/legal/privacy/privacy.component';
|
import { PrivacyComponent } from './pages/legal/privacy/privacy.component';
|
||||||
import { JobsComponent } from './pages/main/jobs/jobs.component';
|
import { JobsComponent } from './pages/main/jobs/jobs.component';
|
||||||
import { ResumesComponent } from './pages/main/resumes/resumes.component';
|
import { ResumesComponent } from './pages/main/resumes/resumes.component';
|
||||||
import { JobNewComponent } from './pages/main/jobs/new/jobnew.component';
|
import { JobEditorComponent } from './pages/main/jobs/editor/jobeditor.component';
|
||||||
import { JobEditComponent } from './pages/main/jobs/edit/jobedit.component';
|
|
||||||
import { CompanyConnectComponent } from './pages/main/company/connect/companyconnect.component';
|
import { CompanyConnectComponent } from './pages/main/company/connect/companyconnect.component';
|
||||||
|
import { JobViewerComponent } from './pages/main/jobs/viewer/jobviewer.component';
|
||||||
|
import { CompanyJobsComponent } from './pages/main/company/jobs/jobs.component';
|
||||||
|
|
||||||
export const routes: Routes = [
|
export const routes: Routes = [
|
||||||
|
|
||||||
@@ -17,11 +18,12 @@ export const routes: Routes = [
|
|||||||
|
|
||||||
// Jobs
|
// Jobs
|
||||||
{ path: "jobs", component: JobsComponent },
|
{ path: "jobs", component: JobsComponent },
|
||||||
{ path: "jobs/new", component: JobNewComponent },
|
{ path: "jobs/editor", component: JobEditorComponent },
|
||||||
{ path: "jobs/edit", component: JobEditComponent },
|
{ path: "jobs/viewer", component: JobViewerComponent },
|
||||||
|
|
||||||
// Company
|
// Company
|
||||||
{ path: "company/connect", component: CompanyConnectComponent },
|
{ path: "company/connect", component: CompanyConnectComponent },
|
||||||
|
{ path: "company/jobs", component: CompanyJobsComponent },
|
||||||
|
|
||||||
// Legal
|
// Legal
|
||||||
{ path: "about", component: AboutComponent },
|
{ path: "about", component: AboutComponent },
|
||||||
|
|||||||
Reference in New Issue
Block a user