mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
23 lines
614 B
JavaScript
23 lines
614 B
JavaScript
/**
|
|
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({
|
|
findAll: function() {
|
|
return Discourse.ajax("/admin/logs/screened_urls.json").then(function(screened_urls) {
|
|
return screened_urls.map(function(b) {
|
|
return Discourse.ScreenedUrl.create(b);
|
|
});
|
|
});
|
|
}
|
|
});
|