aboutsummaryrefslogtreecommitdiff
path: root/src/app/components/profile
diff options
context:
space:
mode:
authorSyndamia <kamen.d.mladenov@protonmail.com>2021-03-14 09:06:08 +0200
committerSyndamia <kamen.d.mladenov@protonmail.com>2021-03-14 09:06:08 +0200
commit8434044dcf8cec14765aa5d96072feaa2560a823 (patch)
tree9cb7776d560f3ae890f12053c4c4f60a52a69e59 /src/app/components/profile
parente8fef550d576aa3eba9d51ea70a3beeac6157ba5 (diff)
downloadDevHive-Angular-8434044dcf8cec14765aa5d96072feaa2560a823.tar
DevHive-Angular-8434044dcf8cec14765aa5d96072feaa2560a823.tar.gz
DevHive-Angular-8434044dcf8cec14765aa5d96072feaa2560a823.zip
Fixed includes (for models) of all components
Diffstat (limited to 'src/app/components/profile')
-rw-r--r--src/app/components/profile/profile.component.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/app/components/profile/profile.component.ts b/src/app/components/profile/profile.component.ts
index 73e1e96..ed17f33 100644
--- a/src/app/components/profile/profile.component.ts
+++ b/src/app/components/profile/profile.component.ts
@@ -1,16 +1,16 @@
import { Component, OnInit } from '@angular/core';
import { Router } from '@angular/router';
import { UserService } from 'src/app/services/user.service';
-import { User } from 'src/models/identity/user';
+import { User } from 'src/models/identity/user.model';
import { AppConstants } from 'src/app/app-constants.module';
import { Location } from '@angular/common';
import { LanguageService } from 'src/app/services/language.service';
import { TechnologyService } from 'src/app/services/technology.service';
-import { Post } from 'src/models/post';
+import { Post } from 'src/models/post.model';
import { FeedService } from 'src/app/services/feed.service';
import { TokenService } from 'src/app/services/token.service';
import { Title } from '@angular/platform-browser';
-import { Friend } from 'src/models/identity/friend';
+import { Friend } from 'src/models/identity/friend.model';
import { FormBuilder, FormControl, FormGroup } from '@angular/forms';
@Component({