You've already forked isop-mirror
feat: implement External system (API) controller with key management
This commit is contained in:
11
frontend/app/types/api_keys.ts
Normal file
11
frontend/app/types/api_keys.ts
Normal 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,
|
||||
};
|
||||
Reference in New Issue
Block a user