mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 23:20:33 +08:00
39f7e98b60
To demonstrate the issue: - Visit https://meta.discourse.org/#somethingHere while logged in - Click "log out" - You will be logged out, but the page will not be reloaded Setting `window.location.pathname = "/"` will not reload the page if there is a hash present. Using `window.location = "/"` gives us the desired behavior.
73 lines
1.6 KiB
JavaScript
73 lines
1.6 KiB
JavaScript
import { ajax } from "discourse/lib/ajax";
|
|
import { extractError } from "discourse/lib/ajax-error";
|
|
|
|
const Backup = Discourse.Model.extend({
|
|
destroy() {
|
|
return ajax("/admin/backups/" + this.filename, { type: "DELETE" });
|
|
},
|
|
|
|
restore() {
|
|
return ajax("/admin/backups/" + this.filename + "/restore", {
|
|
type: "POST",
|
|
data: { client_id: window.MessageBus.clientId }
|
|
});
|
|
}
|
|
});
|
|
|
|
Backup.reopenClass({
|
|
find() {
|
|
return ajax("/admin/backups.json")
|
|
.then(backups => backups.map(backup => Backup.create(backup)))
|
|
.catch(error => {
|
|
bootbox.alert(
|
|
I18n.t("admin.backups.backup_storage_error", {
|
|
error_message: extractError(error)
|
|
})
|
|
);
|
|
return [];
|
|
});
|
|
},
|
|
|
|
start(withUploads) {
|
|
if (withUploads === undefined) {
|
|
withUploads = true;
|
|
}
|
|
return ajax("/admin/backups", {
|
|
type: "POST",
|
|
data: {
|
|
with_uploads: withUploads,
|
|
client_id: window.MessageBus.clientId
|
|
}
|
|
}).then(result => {
|
|
if (!result.success) {
|
|
bootbox.alert(result.message);
|
|
}
|
|
});
|
|
},
|
|
|
|
cancel() {
|
|
return ajax("/admin/backups/cancel.json", {
|
|
type: "DELETE"
|
|
}).then(result => {
|
|
if (!result.success) {
|
|
bootbox.alert(result.message);
|
|
}
|
|
});
|
|
},
|
|
|
|
rollback() {
|
|
return ajax("/admin/backups/rollback.json", {
|
|
type: "POST"
|
|
}).then(result => {
|
|
if (!result.success) {
|
|
bootbox.alert(result.message);
|
|
} else {
|
|
// redirect to homepage (session might be lost)
|
|
window.location = Discourse.getURL("/");
|
|
}
|
|
});
|
|
}
|
|
});
|
|
|
|
export default Backup;
|