mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 02:23:40 +08:00
52c5cf33f8
- 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
14 lines
241 B
JavaScript
14 lines
241 B
JavaScript
import Route from "@ember/routing/route";
|
|
|
|
export default Route.extend({
|
|
actions: {
|
|
show(apiKey) {
|
|
this.transitionTo("adminApiKeys.show", apiKey.id);
|
|
},
|
|
|
|
new() {
|
|
this.transitionTo("adminApiKeys.new");
|
|
}
|
|
}
|
|
});
|