(core/user) Renamed user.model to user.types for better consistency

This commit is contained in:
sercan 2021-06-07 12:18:39 +03:00
parent ca7b4c7e5d
commit 89f5a4ec69
4 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,7 @@ import { FuseNavigationItem } from '@fuse/components/navigation';
import { Message } from 'app/layout/common/messages/messages.types';
import { Notification } from 'app/layout/common/notifications/notifications.types';
import { Shortcut } from 'app/layout/common/shortcuts/shortcuts.types';
import { User } from 'app/core/user/user.model';
import { User } from 'app/core/user/user.types';
export interface InitialData
{

View File

@ -2,7 +2,7 @@ import { Injectable } from '@angular/core';
import { HttpClient } from '@angular/common/http';
import { Observable, ReplaySubject } from 'rxjs';
import { map } from 'rxjs/operators';
import { User } from 'app/core/user/user.model';
import { User } from 'app/core/user/user.types';
@Injectable({
providedIn: 'root'

View File

@ -3,7 +3,7 @@ import { Router } from '@angular/router';
import { BooleanInput } from '@angular/cdk/coercion';
import { Subject } from 'rxjs';
import { takeUntil } from 'rxjs/operators';
import { User } from 'app/core/user/user.model';
import { User } from 'app/core/user/user.types';
import { UserService } from 'app/core/user/user.service';
@Component({