This repository has been archived on 2025-05-04. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
discourse/app/assets/javascripts/admin/controllers/admin-logs-screened-urls.js.es6

22 lines
531 B
Text
Raw Normal View History

2015-04-08 14:17:21 -04:00
import Presence from 'discourse/mixins/presence';
2014-12-22 21:47:04 +05:30
import { outputExportResult } from 'discourse/lib/export-result';
2014-12-07 09:45:22 +05:30
2015-04-08 14:17:21 -04:00
export default Ember.ArrayController.extend(Presence, {
2013-08-15 10:48:30 -04:00
loading: false,
show() {
const self = this;
2014-12-07 09:45:22 +05:30
self.set('loading', true);
2013-08-15 10:48:30 -04:00
Discourse.ScreenedUrl.findAll().then(function(result) {
2014-10-31 17:35:27 -04:00
self.set('model', result);
2013-08-15 10:48:30 -04:00
self.set('loading', false);
});
2014-12-07 09:45:22 +05:30
},
actions: {
exportScreenedUrlList() {
2014-12-07 09:45:22 +05:30
Discourse.ExportCsv.exportScreenedUrlList().then(outputExportResult);
}
2013-08-15 10:48:30 -04:00
}
});