2015-11-20 10:00:12 -05:00
|
|
|
/**
|
|
|
|
Represents an email address that is watched for during account registration,
|
|
|
|
and an action is taken.
|
|
|
|
|
|
|
|
@class ScreenedEmail
|
|
|
|
@extends Discourse.Model
|
|
|
|
@namespace Discourse
|
|
|
|
@module Discourse
|
|
|
|
**/
|
|
|
|
Discourse.ScreenedEmail = Discourse.Model.extend({
|
2013-08-14 16:40:12 -04:00
|
|
|
actionName: function() {
|
2013-08-15 10:48:30 -04:00
|
|
|
return I18n.t("admin.logs.screened_actions." + this.get('action'));
|
2014-06-02 02:52:43 -04:00
|
|
|
}.property('action'),
|
|
|
|
|
|
|
|
clearBlock: function() {
|
|
|
|
return Discourse.ajax('/admin/logs/screened_emails/' + this.get('id'), {method: 'DELETE'});
|
|
|
|
}
|
2013-08-14 16:40:12 -04:00
|
|
|
});
|
|
|
|
|
2015-11-20 10:00:12 -05:00
|
|
|
Discourse.ScreenedEmail.reopenClass({
|
2013-12-30 13:29:52 -05:00
|
|
|
findAll: function() {
|
2013-08-14 16:40:12 -04:00
|
|
|
return Discourse.ajax("/admin/logs/screened_emails.json").then(function(screened_emails) {
|
|
|
|
return screened_emails.map(function(b) {
|
2015-11-20 10:00:12 -05:00
|
|
|
return Discourse.ScreenedEmail.create(b);
|
2013-08-14 16:40:12 -04:00
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|