mirror of
https://github.com/discourse/discourse.git
synced 2025-02-06 23:00:46 +08:00
![David Taylor](/assets/img/avatar_default.png)
- 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
12 lines
178 B
JavaScript
12 lines
178 B
JavaScript
import RESTAdapter from "discourse/adapters/rest";
|
|
|
|
export default RESTAdapter.extend({
|
|
basePath() {
|
|
return "/admin/api/";
|
|
},
|
|
|
|
apiNameFor() {
|
|
return "key";
|
|
}
|
|
});
|