MOBILE-3320 messages: Fix settings button
parent
a5dfe53fcf
commit
5f7e18c2b3
|
@ -51,6 +51,10 @@ function buildRoutes(injector: Injector): Routes {
|
|||
loadChildren: () => import('./pages/contacts/contacts.module')
|
||||
.then(m => m.AddonMessagesContactsPageModule),
|
||||
},
|
||||
{
|
||||
path: 'preferences',
|
||||
loadChildren: () => import('./pages/settings/settings.module').then(m => m.AddonMessagesSettingsPageModule),
|
||||
},
|
||||
...buildTabMainRoutes(injector, {
|
||||
canActivate: [AddonMessagesIndexGuard],
|
||||
}),
|
||||
|
|
|
@ -35,7 +35,6 @@ import { CorePushNotificationsNotificationBasicData } from '@features/pushnotifi
|
|||
import { ActivatedRoute, Params } from '@angular/router';
|
||||
import { CoreUtils } from '@services/utils/utils';
|
||||
import { CoreNavigator } from '@services/navigator';
|
||||
import { AddonMessagesSettingsHandlerService } from '@addons/messages/services/handlers/settings';
|
||||
import { CoreScreen } from '@services/screen';
|
||||
|
||||
/**
|
||||
|
@ -529,7 +528,7 @@ export class AddonMessagesGroupConversationsPage implements OnInit, OnDestroy {
|
|||
* Navigate to message settings.
|
||||
*/
|
||||
gotoSettings(): void {
|
||||
CoreNavigator.navigateToSitePath(AddonMessagesSettingsHandlerService.PAGE_NAME);
|
||||
CoreNavigator.navigateToSitePath('../preferences');
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue