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