style employee list (#6)

Co-authored-by: Phan Huy Tran <p.tran@neusta.de>
Reviewed-on: #6
Co-authored-by: Jan-Marlon Leibl <jleibl@proton.me>
Co-committed-by: Jan-Marlon Leibl <jleibl@proton.me>
This commit is contained in:
2024-12-18 12:00:26 +00:00
committed by Hernd Beidemann
parent da378e7555
commit 53c0fde21f
11 changed files with 264 additions and 21 deletions

View File

@ -16,6 +16,7 @@ export class AuthGuardService {
return false;
}
return true;
}
}

View File

@ -0,0 +1,16 @@
import { TestBed } from '@angular/core/testing';
import { AuthService } from './auth.service';
describe('AuthService', () => {
let service: AuthService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(AuthService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});