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

19 lines
484 B
Plaintext
Raw Normal View History

2018-06-15 11:03:24 -04:00
import { ajax } from "discourse/lib/ajax";
const ScreenedUrl = Discourse.Model.extend({
2013-08-15 10:48:30 -04:00
actionName: function() {
2018-06-15 11:03:24 -04:00
return I18n.t("admin.logs.screened_actions." + this.get("action"));
}.property("action")
2013-08-15 10:48:30 -04:00
});
ScreenedUrl.reopenClass({
findAll: function() {
2016-06-30 13:55:44 -04:00
return ajax("/admin/logs/screened_urls.json").then(function(screened_urls) {
2013-08-15 10:48:30 -04:00
return screened_urls.map(function(b) {
return ScreenedUrl.create(b);
2013-08-15 10:48:30 -04:00
});
});
}
});
export default ScreenedUrl;