Fixed pipes for search

This commit is contained in:
tiago.kayaya
2021-03-29 10:33:56 +01:00
parent ce55c77a94
commit 8ead1268e3
3 changed files with 27 additions and 12 deletions
+24 -11
View File
@@ -162,21 +162,34 @@ const routes: Routes = [
children: [
{
path:'',
/* outlet:'message', */
component: MessagesPage
//loadChildren: ()=> import('../pages/chat/messages/messages.module').then(m => m.MessagesPageModule)
loadChildren: ()=> import('../pages/chat/messages/messages.module').then(m => m.MessagesPageModule)
},
{
path:'contacts',
loadChildren: ()=> import('../shared/chat/messages/contacts/contacts.module').then(m => m.ContactsPageModule)
},
{
path:'contacts',
loadChildren: ()=> import('../pages/chat/messages/contacts/contacts.module').then(m => m.ContactsPageModule)
},
]
},
{
path:'messages',
outlet:'message',
component: MessagesPage
},
{
path:'groups',
outlet:'group',
component: GroupMessagesPage
path:'group-messages',
children:[
{
path:'',
loadChildren: ()=> import('../pages/chat/group-messages/group-messages.module').then(m => m.GroupMessagesPageModule)
},
{
path:'group-contacts',
loadChildren: ()=> import('../shared/chat/group-messages/group-contacts/group-contacts.module').then(m => m.GroupContactsPageModule)
},
{
path:'group-contacts',
loadChildren: ()=> import('../pages/chat/group-messages/group-contacts/group-contacts.module').then(m => m.GroupContactsPageModule)
},
]
},
]