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

22 lines
548 B
Plaintext
Raw Normal View History

import discourseComputed from "discourse-common/utils/decorators";
2018-06-15 23:03:24 +08:00
import { ajax } from "discourse/lib/ajax";
const ScreenedUrl = Discourse.Model.extend({
@discourseComputed("action")
actionName(action) {
return I18n.t("admin.logs.screened_actions." + action);
}
2013-08-15 22:48:30 +08:00
});
ScreenedUrl.reopenClass({
findAll: function() {
2016-07-01 01:55:44 +08:00
return ajax("/admin/logs/screened_urls.json").then(function(screened_urls) {
2013-08-15 22:48:30 +08:00
return screened_urls.map(function(b) {
return ScreenedUrl.create(b);
2013-08-15 22:48:30 +08:00
});
});
}
});
export default ScreenedUrl;