2014-08-21 00:48:56 +08:00
|
|
|
import ModalFunctionality from 'discourse/mixins/modal-functionality';
|
2015-11-21 09:27:06 +08:00
|
|
|
import Backup from 'admin/models/backup';
|
2014-08-21 00:48:56 +08:00
|
|
|
|
2015-08-12 00:27:07 +08:00
|
|
|
export default Ember.Controller.extend(ModalFunctionality, {
|
2014-08-21 00:48:56 +08:00
|
|
|
needs: ["adminBackupsLogs"],
|
|
|
|
|
|
|
|
_startBackup: function (withUploads) {
|
|
|
|
var self = this;
|
|
|
|
Discourse.User.currentProp("hideReadOnlyAlert", true);
|
2015-11-21 09:27:06 +08:00
|
|
|
Backup.start(withUploads).then(function() {
|
2014-08-21 00:48:56 +08:00
|
|
|
self.get("controllers.adminBackupsLogs").clear();
|
|
|
|
self.send("backupStarted");
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
actions: {
|
|
|
|
|
|
|
|
startBackup: function () {
|
2015-03-14 19:46:46 +08:00
|
|
|
this._startBackup();
|
2014-08-21 00:48:56 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
startBackupWithoutUpload: function () {
|
2015-03-14 19:46:46 +08:00
|
|
|
this._startBackup(false);
|
2014-08-21 00:48:56 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
cancel: function () {
|
|
|
|
this.send("closeModal");
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|