mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-15 17:05:16 +08:00
21 lines
585 B
JavaScript
21 lines
585 B
JavaScript
import EmberObject from "@ember/object";
|
|
import { ajax } from "discourse/lib/ajax";
|
|
import discourseComputed from "discourse/lib/decorators";
|
|
import { i18n } from "discourse-i18n";
|
|
|
|
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("admin.logs.screened_actions." + action);
|
|
}
|
|
}
|