0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-03-11 02:12:21 -05:00
ghost/ghost/admin/app/components/modal-regenerate-token.js
2020-11-20 10:23:19 +01:00

10 lines
224 B
JavaScript

import ModalComponent from 'ghost-admin/components/modal-base';
export default ModalComponent.extend({
actions: {
confirm() {
this.confirm();
this.send('closeModal');
}
}
});