mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-22 18:31:57 +03:00
75abe76346
no issue - ran the `ember-native-class-codemod` codemod to convert just the route classes to native class syntax and performed some minor manual cleanup - modern Ember uses native classes rather than EmberObject-based objects, this brings us closer to normalizing our code style across the codebase - skipped the Application route as that requires deeper testing with a replacement for the `ShortcutsRoute` mixin
44 lines
1.2 KiB
JavaScript
44 lines
1.2 KiB
JavaScript
import AdminRoute from 'ghost-admin/routes/admin';
|
|
import {action} from '@ember/object';
|
|
import {inject as service} from '@ember/service';
|
|
|
|
export default class MembersEmailRoute extends AdminRoute {
|
|
@service notifications;
|
|
@service settings;
|
|
|
|
beforeModel(transition) {
|
|
super.beforeModel(...arguments);
|
|
|
|
if (transition.to.queryParams?.fromAddressUpdate === 'success') {
|
|
this.notifications.showAlert(
|
|
`Newsletter email address has been updated`,
|
|
{type: 'success', key: 'members.settings.from-address.updated'}
|
|
);
|
|
} else if (transition.to.queryParams?.supportAddressUpdate === 'success') {
|
|
this.notifications.showAlert(
|
|
`Support email address has been updated`,
|
|
{type: 'success', key: 'members.settings.support-address.updated'}
|
|
);
|
|
}
|
|
}
|
|
|
|
model() {
|
|
return this.settings.reload();
|
|
}
|
|
|
|
setupController(controller) {
|
|
controller.resetEmailAddresses();
|
|
}
|
|
|
|
@action
|
|
willTransition(transition) {
|
|
return this.controller.leaveRoute(transition);
|
|
}
|
|
|
|
buildRouteInfoMetadata() {
|
|
return {
|
|
titleToken: 'Settings - Members'
|
|
};
|
|
}
|
|
}
|