diff options
| author | Syndamia <kamen.d.mladenov@protonmail.com> | 2021-03-14 09:07:01 +0200 |
|---|---|---|
| committer | Syndamia <kamen.d.mladenov@protonmail.com> | 2021-03-14 09:07:01 +0200 |
| commit | e3a8875e64c25a6e46380c4d003beac5953fd3e9 (patch) | |
| tree | 4cb5a0352865cbab3c5ae93141be9b7b2dae53df /src | |
| parent | 8434044dcf8cec14765aa5d96072feaa2560a823 (diff) | |
| download | DevHive-Angular-e3a8875e64c25a6e46380c4d003beac5953fd3e9.tar DevHive-Angular-e3a8875e64c25a6e46380c4d003beac5953fd3e9.tar.gz DevHive-Angular-e3a8875e64c25a6e46380c4d003beac5953fd3e9.zip | |
Fixed model imports of post and user modelscode-refactor
Diffstat (limited to 'src')
| -rw-r--r-- | src/models/identity/user.model.ts | 8 | ||||
| -rw-r--r-- | src/models/post.model.ts | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/src/models/identity/user.model.ts b/src/models/identity/user.model.ts index e0038e0..e2f54a4 100644 --- a/src/models/identity/user.model.ts +++ b/src/models/identity/user.model.ts @@ -1,8 +1,8 @@ import { Guid } from 'guid-typescript'; -import { Language } from '../language'; -import { Technology } from '../technology'; -import { Friend } from './friend'; -import { Role } from './role'; +import { Language } from '../language.model'; +import { Technology } from '../technology.model'; +import { Friend } from './friend.model'; +import { Role } from './role.model'; export class User { private _id : Guid; diff --git a/src/models/post.model.ts b/src/models/post.model.ts index 8e58bea..e0fcd5b 100644 --- a/src/models/post.model.ts +++ b/src/models/post.model.ts @@ -1,6 +1,6 @@ import { Guid } from 'guid-typescript'; -import { Comment } from './comment'; -import { PostComment } from './post-comment'; +import { Comment } from './comment.model'; +import { PostComment } from './post-comment.model'; export class Post { private _postId: Guid; |
