apiKeys.ts 276 B

123456789101112131415161718
  1. import { OrgRole } from './acl';
  2. export interface ApiKey {
  3. id: number;
  4. name: string;
  5. role: OrgRole;
  6. }
  7. export interface NewApiKey {
  8. name: string;
  9. role: OrgRole;
  10. }
  11. export interface ApiKeysState {
  12. keys: ApiKey[];
  13. searchQuery: string;
  14. hasFetched: boolean;
  15. }