mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 15:12:58 +03:00
01e72dc991
refs TryGhost/Ghost#11414 - Restructures member settings in labs, from address gets its own section - Removes explicit site domain for fromAddress as we allow updating the full address - Adds new CTA to trigger magic link for updating members from address - Adds new confirmation modal for email sent to new from address - Adds notification banner for from address update redirect link
46 lines
1.2 KiB
JavaScript
46 lines
1.2 KiB
JavaScript
import AuthenticatedRoute from 'ghost-admin/routes/authenticated';
|
|
import CurrentUserSettings from 'ghost-admin/mixins/current-user-settings';
|
|
import {inject as service} from '@ember/service';
|
|
|
|
export default AuthenticatedRoute.extend(CurrentUserSettings, {
|
|
settings: service(),
|
|
notifications: service(),
|
|
queryParams: {
|
|
fromAddressUpdate: {
|
|
replace: true
|
|
}
|
|
},
|
|
|
|
beforeModel() {
|
|
this._super(...arguments);
|
|
return this.get('session.user')
|
|
.then(this.transitionAuthor())
|
|
.then(this.transitionEditor());
|
|
},
|
|
|
|
model() {
|
|
return this.settings.reload();
|
|
},
|
|
|
|
setupController(controller) {
|
|
if (controller.fromAddressUpdate === 'success') {
|
|
this.notifications.showAlert(
|
|
`Done! Newsletter “From address” has been updated`.htmlSafe(),
|
|
{type: 'success', key: 'members.settings.from-address.updated'}
|
|
);
|
|
}
|
|
},
|
|
|
|
resetController(controller, isExiting) {
|
|
if (isExiting) {
|
|
controller.reset();
|
|
}
|
|
},
|
|
|
|
buildRouteInfoMetadata() {
|
|
return {
|
|
titleToken: 'Settings - Labs'
|
|
};
|
|
}
|
|
});
|