1
0
Fork 0
mirror of https://github.com/TryGhost/Ghost-Admin.git synced 2023-12-14 02:33:04 +01:00
Ghost-Admin/app/controllers/member.js
2019-02-22 18:32:09 +07:00

22 lines
686 B
JavaScript

import Controller from '@ember/controller';
import {alias} from '@ember/object/computed';
import {inject as controller} from '@ember/controller';
import {inject as service} from '@ember/service';
export default Controller.extend({
members: controller(),
router: service(),
member: alias('model'),
actions: {
finaliseDeletion() {
// decrememnt the total member count manually so there's no flash
// when transitioning back to the members list
if (this.members.meta) {
this.members.decrementProperty('meta.pagination.total');
}
this.router.transitionTo('members');
}
}
});