2019-11-08 14:13:35 -05:00
|
|
|
import EmberObject from "@ember/object";
|
2020-05-13 16:23:41 -04:00
|
|
|
import I18n from "I18n";
|
2016-06-30 13:55:44 -04:00
|
|
|
import { ajax } from "discourse/lib/ajax";
|
2019-11-08 14:13:35 -05:00
|
|
|
import discourseComputed from "discourse-common/utils/decorators";
|
2019-04-26 06:16:21 -04:00
|
|
|
|
2019-11-08 14:13:35 -05:00
|
|
|
const ScreenedUrl = EmberObject.extend({
|
2019-11-07 16:38:28 -05:00
|
|
|
@discourseComputed("action")
|
2019-04-26 06:16:21 -04:00
|
|
|
actionName(action) {
|
|
|
|
return I18n.t("admin.logs.screened_actions." + action);
|
|
|
|
},
|
2013-08-15 10:48:30 -04:00
|
|
|
});
|
|
|
|
|
2015-11-20 20:27:06 -05:00
|
|
|
ScreenedUrl.reopenClass({
|
2013-12-30 13:29:52 -05:00
|
|
|
findAll: function () {
|
2016-06-30 13:55:44 -04:00
|
|
|
return ajax("/admin/logs/screened_urls.json").then(function (
|
|
|
|
screened_urls
|
|
|
|
) {
|
2013-08-15 10:48:30 -04:00
|
|
|
return screened_urls.map(function (b) {
|
2015-11-20 20:27:06 -05:00
|
|
|
return ScreenedUrl.create(b);
|
2013-08-15 10:48:30 -04:00
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
});
|
2015-11-20 20:27:06 -05:00
|
|
|
|
|
|
|
export default ScreenedUrl;
|