discourse/app/assets/javascripts/admin/controllers/admin-logs-screened-urls.js...

22 lines
521 B
Plaintext
Raw Normal View History

import { exportEntity } from 'discourse/lib/export-csv';
2014-12-22 11:17:04 -05:00
import { outputExportResult } from 'discourse/lib/export-result';
import ScreenedUrl from 'admin/models/screened-url';
2014-12-06 23:15:22 -05:00
export default Ember.Controller.extend({
2013-08-15 10:48:30 -04:00
loading: false,
show() {
this.set('loading', true);
ScreenedUrl.findAll().then(result => {
this.set('model', result);
this.set('loading', false);
2013-08-15 10:48:30 -04:00
});
2014-12-06 23:15:22 -05:00
},
actions: {
exportScreenedUrlList() {
exportEntity('screened_url').then(outputExportResult);
2014-12-06 23:15:22 -05:00
}
2013-08-15 10:48:30 -04:00
}
});