mirror of
https://github.com/discourse/discourse.git
synced 2024-11-28 23:14:20 +08:00
14 lines
417 B
Plaintext
14 lines
417 B
Plaintext
|
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);
|
||
|
});
|
||
|
}
|
||
|
});
|