add admin navbar and brand/platform management components
This commit is contained in:
4
client/src/app/interfaces/brand.ts
Normal file
4
client/src/app/interfaces/brand.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
export interface Brand {
|
||||
id: string | number;
|
||||
name: string;
|
||||
}
|
||||
@@ -1,7 +0,0 @@
|
||||
import { Credentials } from './credentials';
|
||||
|
||||
describe('Credentials', () => {
|
||||
it('should create an instance', () => {
|
||||
expect(new Credentials()).toBeTruthy();
|
||||
});
|
||||
});
|
||||
7
client/src/app/interfaces/platform.ts
Normal file
7
client/src/app/interfaces/platform.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
import {Brand} from './brand';
|
||||
|
||||
export interface Platform {
|
||||
id: string | number;
|
||||
name: string;
|
||||
brand: Brand | undefined;
|
||||
}
|
||||
7
client/src/app/interfaces/user.ts
Normal file
7
client/src/app/interfaces/user.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
export interface User {
|
||||
firstName: string;
|
||||
lastName: string;
|
||||
username: string;
|
||||
email: string ;
|
||||
role: string;
|
||||
}
|
||||
Reference in New Issue
Block a user