|
@@ -17,6 +17,7 @@ import { PageTestComponent } from './page-test/page-test.component';
|
|
|
import { ContactListPage } from './contact-list/contact-list.component';
|
|
|
import { ContactDetailPage } from './contact-detail/contact-detail.component';
|
|
|
import { UserRelationshipComponent } from './user-relationship/user-relationship.component';
|
|
|
+import { UserSkillComponent } from './user-skill/user-skill.component';
|
|
|
|
|
|
|
|
|
const routes: Routes = [
|
|
@@ -32,6 +33,7 @@ const routes: Routes = [
|
|
|
{ path: 'community/share', component: ShareComponent, canActivate: [authGuard] },
|
|
|
{ path: "me/userFollow", component: ContactListPage, canActivate: [authGuard] },
|
|
|
{ path: "me/userTag", component: UserTagComponent, canActivate: [authGuard] },
|
|
|
+ { path: "me/userSkill", component: UserSkillComponent, canActivate: [authGuard] },
|
|
|
{ path: "me/userCollection", component: UserCollectionComponent, canActivate: [authGuard] },
|
|
|
{ path: "me/userRelationship", component: UserRelationshipComponent, canActivate: [authGuard] },
|
|
|
{ path: 'me/userFollow/list', component: ContactDetailPage, canActivate: [authGuard]},
|