2013-08-15 10:48:30 -04:00
|
|
|
/**
|
|
|
|
Represents a URL that is watched for, and an action may be taken.
|
|
|
|
|
|
|
|
@class ScreenedUrl
|
|
|
|
@extends Discourse.Model
|
|
|
|
@namespace Discourse
|
|
|
|
@module Discourse
|
|
|
|
**/
|
|
|
|
Discourse.ScreenedUrl = Discourse.Model.extend({
|
|
|
|
actionName: function() {
|
|
|
|
return I18n.t("admin.logs.screened_actions." + this.get('action'));
|
|
|
|
}.property('action')
|
|
|
|
});
|
|
|
|
|
|
|
|
Discourse.ScreenedUrl.reopenClass({
|
2013-12-30 13:29:52 -05:00
|
|
|
findAll: function() {
|
2013-08-15 10:48:30 -04:00
|
|
|
return Discourse.ajax("/admin/logs/screened_urls.json").then(function(screened_urls) {
|
|
|
|
return screened_urls.map(function(b) {
|
|
|
|
return Discourse.ScreenedUrl.create(b);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|