mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 09:23:13 +08:00
22 lines
515 B
JavaScript
22 lines
515 B
JavaScript
|
import Component from "@glimmer/component";
|
||
|
import { tracked } from "@glimmer/tracking";
|
||
|
import { action } from "@ember/object";
|
||
|
import { ajax } from "discourse/lib/ajax";
|
||
|
|
||
|
export default class AdminThemeChangeComponent extends Component {
|
||
|
@tracked diff;
|
||
|
|
||
|
constructor() {
|
||
|
super(...arguments);
|
||
|
this.loadDiff();
|
||
|
}
|
||
|
|
||
|
@action
|
||
|
async loadDiff() {
|
||
|
const diff = await ajax(
|
||
|
`/admin/logs/staff_action_logs/${this.args.model.staffActionLog.id}/diff`
|
||
|
);
|
||
|
this.diff = diff.side_by_side;
|
||
|
}
|
||
|
}
|