Renamed groups to roles in the frontend

Working:
 Account
 Cost Centre
 Employee
 Product Group
 Product
 Role
 User
 Client
This commit is contained in:
tanshu
2020-05-12 01:44:57 +05:30
parent cd764be49c
commit 6dbab6442f
50 changed files with 272 additions and 295 deletions
@@ -0,0 +1,15 @@
import {inject, TestBed} from '@angular/core/testing';
import {RoleService} from './role.service';
describe('RoleService', () => {
beforeEach(() => {
TestBed.configureTestingModule({
providers: [RoleService]
});
});
it('should be created', inject([RoleService], (service: RoleService) => {
expect(service).toBeTruthy();
}));
});