mirror of
https://github.com/discourse/discourse.git
synced 2025-05-28 13:51:18 +08:00
FEATURE: Overhaul of admin API key system (#8284)
- Allow revoking keys without deleting them - Auto-revoke keys after a period of no use (default 6 months) - Allow multiple keys per user - Allow attaching a description to each key, for easier auditing - Log changes to keys in the staff action log - Move all key management to one place, and improve the UI
This commit is contained in:
@ -258,10 +258,6 @@ export default Controller.extend(CanCheckEmails, {
|
||||
.finally(() => this.toggleProperty("editingTitle"));
|
||||
},
|
||||
|
||||
generateApiKey() {
|
||||
this.model.generateApiKey();
|
||||
},
|
||||
|
||||
saveCustomGroups() {
|
||||
const currentIds = this.customGroupIds;
|
||||
const bufferedIds = this.customGroupIdsBuffer;
|
||||
@ -294,32 +290,6 @@ export default Controller.extend(CanCheckEmails, {
|
||||
|
||||
resetPrimaryGroup() {
|
||||
this.set("model.primary_group_id", this.originalPrimaryGroupId);
|
||||
},
|
||||
|
||||
regenerateApiKey() {
|
||||
bootbox.confirm(
|
||||
I18n.t("admin.api.confirm_regen"),
|
||||
I18n.t("no_value"),
|
||||
I18n.t("yes_value"),
|
||||
result => {
|
||||
if (result) {
|
||||
this.model.generateApiKey();
|
||||
}
|
||||
}
|
||||
);
|
||||
},
|
||||
|
||||
revokeApiKey() {
|
||||
bootbox.confirm(
|
||||
I18n.t("admin.api.confirm_revoke"),
|
||||
I18n.t("no_value"),
|
||||
I18n.t("yes_value"),
|
||||
result => {
|
||||
if (result) {
|
||||
this.model.revokeApiKey();
|
||||
}
|
||||
}
|
||||
);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
Reference in New Issue
Block a user