Feature: Employee Edit and Create #18
No reviewers
Labels
No milestone
No project
No assignees
2 participants
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: SZUT/EMS#18
Loading…
Reference in a new issue
No description provided.
Delete branch "feature/employee-edit"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
This adds a new View which is used for Adding and Editing Employees.
It has validations
@ -5,0 +7,4 @@
export const routes: Routes = [
{ path: '', component: DashboardComponent, title: 'Home' },
{ path: 'employee/new', component: EmployeeDetailComponent, title: 'New Employee', canActivate: [AuthService] },
{ path: 'employee/:id', component: EmployeeDetailComponent, title: 'Edit Employee', canActivate: [AuthService] }
Wenn der
AuthServices
als wert fürcanActivate
gesetzt ist, dann wird der Nutzer, wenn er diese Seiten besucht, ohne eingeloggt zu sein, auf die Home Seite umgeleitet.@ -0,0 +98,4 @@
const employee: UpdatedEmployee = this.employeeForm.value;
employee.skillSet = this.skillsDataSource.data.map((qualification) => qualification.id);
if (employee.skillSet.length == 0) {
Heidemanns API kann beim update zwar das
skillSet
aktualisieren, aber nur solange du versuchst es auf mindestens einen wert zu setzten. Es erkennt den Unterschied zwischennull
und[]
nicht, deswegen müssen wir, wenn alle Skills entfernt werden, jeden einzeln per API loslösen.