mirror of
https://github.com/discourse/discourse.git
synced 2024-11-30 11:34:43 +08:00
c190994046
This commit was generated using the ember-native-class-codemod along with a handful of manual updates
18 lines
501 B
JavaScript
18 lines
501 B
JavaScript
import Controller from "@ember/controller";
|
|
import ModalFunctionality from "discourse/mixins/modal-functionality";
|
|
import { ajax } from "discourse/lib/ajax";
|
|
|
|
export default class AdminThemeChangeController extends Controller.extend(
|
|
ModalFunctionality
|
|
) {
|
|
loadDiff() {
|
|
this.set("loading", true);
|
|
ajax(
|
|
"/admin/logs/staff_action_logs/" + this.get("model.id") + "/diff"
|
|
).then((diff) => {
|
|
this.set("loading", false);
|
|
this.set("diff", diff.side_by_side);
|
|
});
|
|
}
|
|
}
|