Added component to change designation
This commit is contained in:
@@ -59,9 +59,9 @@ In your Angular project:
|
||||
|
||||
```typescript
|
||||
|
||||
import { ApplicationConfig } from '@angular/core';
|
||||
import { provideHttpClient } from '@angular/common/http';
|
||||
import { provideApi } from '';
|
||||
import {ApplicationConfig} from '@angular/core';
|
||||
import {provideHttpClient} from '@angular/common/http';
|
||||
import {provideApi} from '';
|
||||
|
||||
export const appConfig: ApplicationConfig = {
|
||||
providers: [
|
||||
|
||||
@@ -16,6 +16,7 @@ export interface GetUserDetailsDto {
|
||||
name?: string | null;
|
||||
username?: string | null;
|
||||
email?: string | null;
|
||||
designationId?: number | null;
|
||||
designationName?: string | null;
|
||||
creationDate?: string;
|
||||
getUserStatsDto?: GetUserStatsDto | null;
|
||||
|
||||
@@ -15,6 +15,7 @@ export interface GetUserDto {
|
||||
firstName?: string | null;
|
||||
name?: string | null;
|
||||
username?: string | null;
|
||||
designationId?: number | null;
|
||||
designationName?: string | null;
|
||||
getUserStatsDto?: GetUserStatsDto | null;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user