mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-17 05:21:36 +03:00
5ecc74e87a
Closes #2849 -wire up delete post action in ember admin -refactor ember modal dialog -override RESTAdapter.deleteRecord to workaround Ember expecting an empty response body on DELETEs
18 lines
316 B
JavaScript
18 lines
316 B
JavaScript
|
|
var UploadController = Ember.Controller.extend({
|
|
actions: {
|
|
confirmReject: function () {
|
|
return true;
|
|
}
|
|
},
|
|
|
|
confirm: {
|
|
reject: {
|
|
buttonClass: true,
|
|
text: 'Cancel' // The reject button text
|
|
}
|
|
}
|
|
});
|
|
|
|
export default UploadController;
|