feat: implement External system (API) controller with key management

This commit is contained in:
2025-11-29 18:47:39 +01:00
parent 9405afc404
commit a08bee8d11
3 changed files with 77 additions and 3 deletions

View File

@@ -0,0 +1,11 @@
export type ApiKey = {
id: number,
name: string,
created_at: string,
last_used_at: string,
owner: string,
};
export type NewApiKey = {
key: string,
};