mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 02:30:57 +08:00
29 lines
794 B
JavaScript
29 lines
794 B
JavaScript
/**
|
|
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({
|
|
actionName: function() {
|
|
return I18n.t("admin.logs.screened_actions." + this.get('action'));
|
|
}.property('action'),
|
|
|
|
clearBlock: function() {
|
|
return Discourse.ajax('/admin/logs/screened_emails/' + this.get('id'), {method: 'DELETE'});
|
|
}
|
|
});
|
|
|
|
Discourse.ScreenedEmail.reopenClass({
|
|
findAll: function() {
|
|
return Discourse.ajax("/admin/logs/screened_emails.json").then(function(screened_emails) {
|
|
return screened_emails.map(function(b) {
|
|
return Discourse.ScreenedEmail.create(b);
|
|
});
|
|
});
|
|
}
|
|
});
|