mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 21:16:08 +08:00
64557c4076
This commit was generated using the ember-native-class-codemod along with a handful of manual updates
22 lines
574 B
JavaScript
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);
|
|
}
|
|
}
|