X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/62ff5a943865229c1630c66366f824511048ce63..229eaf53b39af3a7e9408ed5f7e49d74b318445a:/src/models/ssh-key.ts diff --git a/src/models/ssh-key.ts b/src/models/ssh-key.ts index 76d6ffd9..8ccbd929 100644 --- a/src/models/ssh-key.ts +++ b/src/models/ssh-key.ts @@ -4,19 +4,6 @@ import { Resource } from '~/models/resource'; -export interface SshKey { - name: string; - keyType: KeyType; - authorizedUserUuid: string; - publicKey: string; - expiresAt: string; -} - -export interface SshKeyCreateFormDialogData { - publicKey: string; - name: string; -} - export enum KeyType { SSH = 'SSH' }