discourse/app/assets/javascripts/admin/addon/models/screened-url.js
David Taylor 64557c4076
DEV: Update admin models to native class syntax (#20704)
This commit was generated using the ember-native-class-codemod along with a handful of manual updates
2023-03-17 10:18:42 +00:00

22 lines
574 B
JavaScript

import EmberObject from "@ember/object";
import I18n from "I18n";
import { ajax } from "discourse/lib/ajax";
import discourseComputed from "discourse-common/utils/decorators";
export default class ScreenedUrl extends EmberObject {
static findAll() {
return ajax("/admin/logs/screened_urls.json").then(function (
screened_urls
) {
return screened_urls.map(function (b) {
return ScreenedUrl.create(b);
});
});
}
@discourseComputed("action")
actionName(action) {
return I18n.t("admin.logs.screened_actions." + action);
}
}