mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 23:20:33 +08:00
15 lines
418 B
JavaScript
15 lines
418 B
JavaScript
import ModalFunctionality from "discourse/mixins/modal-functionality";
|
|
import { ajax } from "discourse/lib/ajax";
|
|
|
|
export default Ember.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);
|
|
});
|
|
}
|
|
});
|