2015-07-25 00:33:53 +08:00
|
|
|
import { exportEntity } from 'discourse/lib/export-csv';
|
2014-12-23 00:17:04 +08:00
|
|
|
import { outputExportResult } from 'discourse/lib/export-result';
|
2015-11-21 09:27:06 +08:00
|
|
|
import ScreenedUrl from 'admin/models/screened-url';
|
2014-12-07 12:15:22 +08:00
|
|
|
|
2016-10-21 01:26:41 +08:00
|
|
|
export default Ember.Controller.extend({
|
2013-08-15 22:48:30 +08:00
|
|
|
loading: false,
|
|
|
|
|
2015-02-11 06:20:16 +08:00
|
|
|
show() {
|
2016-10-21 01:26:41 +08:00
|
|
|
this.set('loading', true);
|
|
|
|
ScreenedUrl.findAll().then(result => {
|
|
|
|
this.set('model', result);
|
|
|
|
this.set('loading', false);
|
2013-08-15 22:48:30 +08:00
|
|
|
});
|
2014-12-07 12:15:22 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
actions: {
|
2015-02-11 06:20:16 +08:00
|
|
|
exportScreenedUrlList() {
|
2015-07-25 00:33:53 +08:00
|
|
|
exportEntity('screened_url').then(outputExportResult);
|
2014-12-07 12:15:22 +08:00
|
|
|
}
|
2013-08-15 22:48:30 +08:00
|
|
|
}
|
|
|
|
});
|