mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 04:48:53 +08:00
42 lines
941 B
JavaScript
42 lines
941 B
JavaScript
import ApiKey from "admin/models/api-key";
|
|
import { default as computed } from "ember-addons/ember-computed-decorators";
|
|
|
|
export default Ember.Controller.extend({
|
|
@computed("model.[]")
|
|
hasMasterKey(model) {
|
|
return !!model.findBy("user", null);
|
|
},
|
|
|
|
actions: {
|
|
generateMasterKey() {
|
|
ApiKey.generateMasterKey().then(key => this.model.pushObject(key));
|
|
},
|
|
|
|
regenerateKey(key) {
|
|
bootbox.confirm(
|
|
I18n.t("admin.api.confirm_regen"),
|
|
I18n.t("no_value"),
|
|
I18n.t("yes_value"),
|
|
result => {
|
|
if (result) {
|
|
key.regenerate();
|
|
}
|
|
}
|
|
);
|
|
},
|
|
|
|
revokeKey(key) {
|
|
bootbox.confirm(
|
|
I18n.t("admin.api.confirm_revoke"),
|
|
I18n.t("no_value"),
|
|
I18n.t("yes_value"),
|
|
result => {
|
|
if (result) {
|
|
key.revoke().then(() => this.model.removeObject(key));
|
|
}
|
|
}
|
|
);
|
|
}
|
|
}
|
|
});
|