mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 07:08:44 +08:00
19 lines
459 B
Plaintext
19 lines
459 B
Plaintext
|
import ModalFunctionality from 'discourse/mixins/modal-functionality';
|
||
|
|
||
|
export default Ember.Controller.extend(ModalFunctionality, {
|
||
|
loading: null,
|
||
|
historyTarget: null,
|
||
|
history: null,
|
||
|
|
||
|
onShow() {
|
||
|
this.set('loading', true);
|
||
|
this.set('history', null);
|
||
|
},
|
||
|
|
||
|
loadHistory(target) {
|
||
|
this.store.findAll('moderation-history', target).then(result => {
|
||
|
this.set('history', result);
|
||
|
}).finally(() => this.set('loading', false));
|
||
|
}
|
||
|
});
|