rename companyconnect to fit with URL scheme
This commit is contained in:
+8
-5
@@ -8,12 +8,12 @@ import { Authentication } from 'app/services/Authentication';
|
||||
import { Company } from 'app/models/Company';
|
||||
|
||||
@Component({
|
||||
selector: 'main-company-connect',
|
||||
templateUrl: './companyconnect.component.html',
|
||||
styleUrls: [ './companyconnect.component.css' ],
|
||||
selector: 'main-company-editor',
|
||||
templateUrl: './editor.component.html',
|
||||
styleUrls: [ './editor.component.css' ],
|
||||
imports: [ FormsModule, CommonModule, RouterModule ]
|
||||
})
|
||||
export class CompanyConnectComponent {
|
||||
export class CompanyEditorComponent {
|
||||
|
||||
@ViewChildren('step') formSteps!: QueryList<ElementRef<HTMLDivElement>>;
|
||||
currentStep: number = 0;
|
||||
@@ -23,7 +23,10 @@ export class CompanyConnectComponent {
|
||||
MaxFileMB: number = 3;
|
||||
|
||||
constructor( private http: HttpClient, private router: Router, private route: ActivatedRoute, private title: Title, public auth: Authentication ) {
|
||||
this.title.setTitle("Company - Connect | BoredCareers");
|
||||
this.title.setTitle("Company - Editor | BoredCareers");
|
||||
|
||||
// Query param CompanyID -> Edit
|
||||
// Query param null -> New
|
||||
};
|
||||
|
||||
ngAfterViewInit(){
|
||||
Reference in New Issue
Block a user