mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 01:54:12 +08:00
12 lines
266 B
Plaintext
12 lines
266 B
Plaintext
|
const EmailSettings = Discourse.Model.extend({});
|
||
|
|
||
|
EmailSettings.reopenClass({
|
||
|
find: function() {
|
||
|
return Discourse.ajax("/admin/email.json").then(function (settings) {
|
||
|
return EmailSettings.create(settings);
|
||
|
});
|
||
|
}
|
||
|
});
|
||
|
|
||
|
export default EmailSettings;
|