mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 16:18:42 -05:00
29 lines
708 B
JavaScript
29 lines
708 B
JavaScript
Discourse.AdminApi = Discourse.Model.extend({
|
|
VALID_KEY_LENGTH: 64,
|
|
|
|
keyExists: function(){
|
|
var key = this.get('key') || '';
|
|
return key && key.length === this.VALID_KEY_LENGTH;
|
|
}.property('key'),
|
|
|
|
generateKey: function(){
|
|
var adminApi = this;
|
|
Discourse.ajax('/admin/api/generate_key', {type: 'POST'}).then(function (result) {
|
|
adminApi.set('key', result.key);
|
|
});
|
|
},
|
|
|
|
regenerateKey: function(){
|
|
alert(Em.String.i18n('not_implemented'));
|
|
}
|
|
});
|
|
|
|
Discourse.AdminApi.reopenClass({
|
|
find: function() {
|
|
var model = Discourse.AdminApi.create();
|
|
Discourse.ajax("/admin/api").then(function(data) {
|
|
model.setProperties(data);
|
|
});
|
|
return model;
|
|
}
|
|
});
|