mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 00:29:18 +08:00
24 lines
692 B
JavaScript
24 lines
692 B
JavaScript
import showModal from "discourse/lib/show-modal";
|
|
|
|
export default Discourse.Route.extend({
|
|
// TODO: make this automatic using an `{{outlet}}`
|
|
renderTemplate: function() {
|
|
this.render("admin/templates/logs/staff-action-logs", {
|
|
into: "adminLogs"
|
|
});
|
|
},
|
|
|
|
actions: {
|
|
showDetailsModal(model) {
|
|
showModal("admin-staff-action-log-details", { model, admin: true });
|
|
this.controllerFor("modal").set("modalClass", "log-details-modal");
|
|
},
|
|
|
|
showCustomDetailsModal(model) {
|
|
let modal = showModal("admin-theme-change", { model, admin: true });
|
|
this.controllerFor("modal").set("modalClass", "history-modal");
|
|
modal.loadDiff();
|
|
}
|
|
}
|
|
});
|