2016-07-01 01:55:44 +08:00
|
|
|
import { ajax } from 'discourse/lib/ajax';
|
2015-11-21 09:27:06 +08:00
|
|
|
const ScreenedUrl = Discourse.Model.extend({
|
2013-08-15 22:48:30 +08:00
|
|
|
actionName: function() {
|
|
|
|
return I18n.t("admin.logs.screened_actions." + this.get('action'));
|
|
|
|
}.property('action')
|
|
|
|
});
|
|
|
|
|
2015-11-21 09:27:06 +08:00
|
|
|
ScreenedUrl.reopenClass({
|
2013-12-31 02:29:52 +08:00
|
|
|
findAll: function() {
|
2016-07-01 01:55:44 +08:00
|
|
|
return ajax("/admin/logs/screened_urls.json").then(function(screened_urls) {
|
2013-08-15 22:48:30 +08:00
|
|
|
return screened_urls.map(function(b) {
|
2015-11-21 09:27:06 +08:00
|
|
|
return ScreenedUrl.create(b);
|
2013-08-15 22:48:30 +08:00
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
2015-11-21 09:27:06 +08:00
|
|
|
|
|
|
|
export default ScreenedUrl;
|