diff --git a/ToDo.yaml b/ToDo.yaml
index 7223871..9e59b7b 100755
--- a/ToDo.yaml
+++ b/ToDo.yaml
@@ -38,4 +38,7 @@ Task:
CompanyConnect | need to lookup company before making a new one
Finish Auth setup
- Make sure autorenew works
\ No newline at end of file
+ Make sure autorenew works
+
+ Jobs/editor w/ Querystring JobID=# is not implimented yet
+ Company -> Edit employees not implimented yet
\ No newline at end of file
diff --git a/src/Client/src/app/app.html b/src/Client/src/app/app.html
index dbdba2d..369369b 100644
--- a/src/Client/src/app/app.html
+++ b/src/Client/src/app/app.html
@@ -1,9 +1,8 @@
diff --git a/src/Client/src/app/app.routes.ts b/src/Client/src/app/app.routes.ts
index 1ac8c10..8331146 100644
--- a/src/Client/src/app/app.routes.ts
+++ b/src/Client/src/app/app.routes.ts
@@ -9,11 +9,14 @@ import { JobEditorComponent } from './pages/main/jobs/editor/jobeditor.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';
+import { CompanyComponent } from './pages/main/company/company.component';
export const routes: Routes = [
// Home
{ path: "", component: HomeComponent },
+
+ // Resumes
{ path: "resumes", component: ResumesComponent },
// Jobs
@@ -22,6 +25,7 @@ export const routes: Routes = [
{ path: "jobs/viewer", component: JobViewerComponent },
// Company
+ { path: "company", component: CompanyComponent },
{ path: "company/connect", component: CompanyConnectComponent },
{ path: "company/jobs", component: CompanyJobsComponent },
diff --git a/src/Client/src/app/app.ts b/src/Client/src/app/app.ts
index 2976021..7c72022 100644
--- a/src/Client/src/app/app.ts
+++ b/src/Client/src/app/app.ts
@@ -13,7 +13,7 @@ import { isDevMode } from '@angular/core';
})
export class App {
- @ViewChild('homeLink') homeLink!: ElementRef;
+ @ViewChild('companiesLink') companiesLink!: ElementRef;
@ViewChild('jobsLink') jobLink!: ElementRef;
@ViewChild('resumesLink') resumeLink!: ElementRef;
@@ -49,7 +49,7 @@ export class App {
}
ngAfterViewInit(){
- let ViewLinks = [ this.homeLink, this.resumeLink, this.jobLink ];
+ let ViewLinks = [ this.companiesLink, this.resumeLink, this.jobLink ];
ViewLinks.forEach(link => {
if (new URL(link.nativeElement.href).pathname === new URL(window.location.href).pathname){
link.nativeElement.classList.add("active");