discourse/app/assets/javascripts/admin/models/screened-url.js.es6

18 lines
451 B
Plaintext
Raw Normal View History

2016-03-31 17:33:25 -04:00
const ScreenedUrl = Discourse.Model.extend({
2013-08-15 10:48:30 -04:00
actionName: function() {
return I18n.t("admin.logs.screened_actions." + this.get('action'));
}.property('action')
});
2016-03-31 17:33:25 -04:00
ScreenedUrl.reopenClass({
findAll: function() {
2013-08-15 10:48:30 -04:00
return Discourse.ajax("/admin/logs/screened_urls.json").then(function(screened_urls) {
return screened_urls.map(function(b) {
2016-03-31 17:33:25 -04:00
return ScreenedUrl.create(b);
2013-08-15 10:48:30 -04:00
});
});
}
});
2016-03-31 17:33:25 -04:00
export default ScreenedUrl;