mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 04:52:52 +08:00
4b455e741e
Co-Authored-By: majakomel <maja.komel@gmail.com>
22 lines
535 B
JavaScript
22 lines
535 B
JavaScript
import { ajax } from "discourse/lib/ajax";
|
|
import computed from "ember-addons/ember-computed-decorators";
|
|
|
|
const ScreenedUrl = Discourse.Model.extend({
|
|
@computed("action")
|
|
actionName(action) {
|
|
return I18n.t("admin.logs.screened_actions." + action);
|
|
}
|
|
});
|
|
|
|
ScreenedUrl.reopenClass({
|
|
findAll: function() {
|
|
return ajax("/admin/logs/screened_urls.json").then(function(screened_urls) {
|
|
return screened_urls.map(function(b) {
|
|
return ScreenedUrl.create(b);
|
|
});
|
|
});
|
|
}
|
|
});
|
|
|
|
export default ScreenedUrl;
|