mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 05:02:24 +08:00
33 lines
738 B
JavaScript
33 lines
738 B
JavaScript
import ModalFunctionality from 'discourse/mixins/modal-functionality';
|
|
import Controller from 'discourse/controllers/controller';
|
|
|
|
export default Controller.extend(ModalFunctionality, {
|
|
needs: ["adminBackupsLogs"],
|
|
|
|
_startBackup: function (withUploads) {
|
|
var self = this;
|
|
Discourse.User.currentProp("hideReadOnlyAlert", true);
|
|
Discourse.Backup.start(withUploads).then(function() {
|
|
self.get("controllers.adminBackupsLogs").clear();
|
|
self.send("backupStarted");
|
|
});
|
|
},
|
|
|
|
actions: {
|
|
|
|
startBackup: function () {
|
|
this._startBackup();
|
|
},
|
|
|
|
startBackupWithoutUpload: function () {
|
|
this._startBackup(false);
|
|
},
|
|
|
|
cancel: function () {
|
|
this.send("closeModal");
|
|
}
|
|
|
|
}
|
|
|
|
});
|