15067: Adds tests for vocabulary functions.
[arvados-workbench2.git] / src / models / ssh-key.ts
index 76d6ffd94c78a0c1b9a1b505706d662ece7d105f..8ccbd92908109b3d126bd76154d74beedc3e4913 100644 (file)
@@ -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'
 }