@@ -24,31 +24,31 @@ import {
24
24
} from "@gitpod/public-api/lib/gitpod/experimental/v1/user_pb" ;
25
25
26
26
export class UserService implements ServiceImpl < typeof UserServiceInterface > {
27
- getAuthenticatedUser ( req : GetAuthenticatedUserRequest ) : Promise < GetAuthenticatedUserResponse > {
27
+ async getAuthenticatedUser ( req : GetAuthenticatedUserRequest ) : Promise < GetAuthenticatedUserResponse > {
28
28
throw new ConnectError ( "unimplemented" , Code . Unimplemented ) ;
29
29
}
30
30
31
- listSSHKeysGetAuthenticatedUserRequest ( req : ListSSHKeysRequest ) : Promise < ListSSHKeysResponse > {
31
+ async listSSHKeys ( req : ListSSHKeysRequest ) : Promise < ListSSHKeysResponse > {
32
32
throw new ConnectError ( "unimplemented" , Code . Unimplemented ) ;
33
33
}
34
34
35
- createSSHKeyGetAuthenticatedUserRequest ( req : CreateSSHKeyRequest ) : Promise < CreateSSHKeyResponse > {
35
+ async createSSHKey ( req : CreateSSHKeyRequest ) : Promise < CreateSSHKeyResponse > {
36
36
throw new ConnectError ( "unimplemented" , Code . Unimplemented ) ;
37
37
}
38
38
39
- getSSHKeyGetAuthenticatedUserRequest ( req : GetSSHKeyRequest ) : Promise < GetSSHKeyResponse > {
39
+ async getSSHKey ( req : GetSSHKeyRequest ) : Promise < GetSSHKeyResponse > {
40
40
throw new ConnectError ( "unimplemented" , Code . Unimplemented ) ;
41
41
}
42
42
43
- deleteSSHKeyGetAuthenticatedUserRequest ( req : DeleteSSHKeyRequest ) : Promise < DeleteSSHKeyResponse > {
43
+ async deleteSSHKey ( req : DeleteSSHKeyRequest ) : Promise < DeleteSSHKeyResponse > {
44
44
throw new ConnectError ( "unimplemented" , Code . Unimplemented ) ;
45
45
}
46
46
47
- getGitTokenGetAuthenticatedUserRequest ( req : GetGitTokenRequest ) : Promise < GetGitTokenResponse > {
47
+ async getGitToken ( req : GetGitTokenRequest ) : Promise < GetGitTokenResponse > {
48
48
throw new ConnectError ( "unimplemented" , Code . Unimplemented ) ;
49
49
}
50
50
51
- blockUserGetAuthenticatedUserRequest ( req : BlockUserRequest ) : Promise < BlockUserResponse > {
51
+ async blockUser ( req : BlockUserRequest ) : Promise < BlockUserResponse > {
52
52
throw new ConnectError ( "unimplemented" , Code . Unimplemented ) ;
53
53
}
54
54
}
0 commit comments