mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 23:20:33 +08:00
bf91532260
- Remove ArrayController - Remove {{view}} from templates - Replace many cases of needs: [‘controller’] with inject - Enable Ember Legacy Views
22 lines
521 B
JavaScript
22 lines
521 B
JavaScript
import { exportEntity } from 'discourse/lib/export-csv';
|
|
import { outputExportResult } from 'discourse/lib/export-result';
|
|
import ScreenedUrl from 'admin/models/screened-url';
|
|
|
|
export default Ember.Controller.extend({
|
|
loading: false,
|
|
|
|
show() {
|
|
this.set('loading', true);
|
|
ScreenedUrl.findAll().then(result => {
|
|
this.set('model', result);
|
|
this.set('loading', false);
|
|
});
|
|
},
|
|
|
|
actions: {
|
|
exportScreenedUrlList() {
|
|
exportEntity('screened_url').then(outputExportResult);
|
|
}
|
|
}
|
|
});
|