aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSyndamia <kamen.d.mladenov@protonmail.com>2021-03-14 09:07:01 +0200
committerSyndamia <kamen.d.mladenov@protonmail.com>2021-03-14 09:07:01 +0200
commite3a8875e64c25a6e46380c4d003beac5953fd3e9 (patch)
tree4cb5a0352865cbab3c5ae93141be9b7b2dae53df
parent8434044dcf8cec14765aa5d96072feaa2560a823 (diff)
downloadDevHive-Angular-code-refactor.tar
DevHive-Angular-code-refactor.tar.gz
DevHive-Angular-code-refactor.zip
Fixed model imports of post and user modelscode-refactor
-rw-r--r--src/models/identity/user.model.ts8
-rw-r--r--src/models/post.model.ts4
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;