mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 02:30:57 +08:00
eab560fe2a
Co-authored-by: Mark VanLandingham <markvanlan@gmail.com> Co-authored-by: Robin Ward <robin.ward@gmail.com> Co-authored-by: Mark VanLandingham <markvanlan@gmail.com>
24 lines
610 B
JavaScript
24 lines
610 B
JavaScript
import I18n from "I18n";
|
|
import discourseComputed from "discourse-common/utils/decorators";
|
|
import { ajax } from "discourse/lib/ajax";
|
|
import EmberObject from "@ember/object";
|
|
|
|
const ScreenedUrl = EmberObject.extend({
|
|
@discourseComputed("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;
|