Skip to content

Commit e36ca4d

Browse files
committed
fix
1 parent 22737a4 commit e36ca4d

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

components/server/src/api/user.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,31 +26,31 @@ import {
2626

2727
@injectable()
2828
export class UserService implements ServiceImpl<typeof UserServiceInterface> {
29-
async getAuthenticatedUser(req: GetAuthenticatedUserRequest): Promise<GetAuthenticatedUserResponse> {
29+
public async getAuthenticatedUser(req: GetAuthenticatedUserRequest): Promise<GetAuthenticatedUserResponse> {
3030
throw new ConnectError("unimplemented", Code.Unimplemented);
3131
}
3232

33-
async listSSHKeys(req: ListSSHKeysRequest): Promise<ListSSHKeysResponse> {
33+
public async listSSHKeys(req: ListSSHKeysRequest): Promise<ListSSHKeysResponse> {
3434
throw new ConnectError("unimplemented", Code.Unimplemented);
3535
}
3636

37-
async createSSHKey(req: CreateSSHKeyRequest): Promise<CreateSSHKeyResponse> {
37+
public async createSSHKey(req: CreateSSHKeyRequest): Promise<CreateSSHKeyResponse> {
3838
throw new ConnectError("unimplemented", Code.Unimplemented);
3939
}
4040

41-
async getSSHKey(req: GetSSHKeyRequest): Promise<GetSSHKeyResponse> {
41+
public async getSSHKey(req: GetSSHKeyRequest): Promise<GetSSHKeyResponse> {
4242
throw new ConnectError("unimplemented", Code.Unimplemented);
4343
}
4444

45-
async deleteSSHKey(req: DeleteSSHKeyRequest): Promise<DeleteSSHKeyResponse> {
45+
public async deleteSSHKey(req: DeleteSSHKeyRequest): Promise<DeleteSSHKeyResponse> {
4646
throw new ConnectError("unimplemented", Code.Unimplemented);
4747
}
4848

49-
async getGitToken(req: GetGitTokenRequest): Promise<GetGitTokenResponse> {
49+
public async getGitToken(req: GetGitTokenRequest): Promise<GetGitTokenResponse> {
5050
throw new ConnectError("unimplemented", Code.Unimplemented);
5151
}
5252

53-
async blockUser(req: BlockUserRequest): Promise<BlockUserResponse> {
53+
public async blockUser(req: BlockUserRequest): Promise<BlockUserResponse> {
5454
throw new ConnectError("unimplemented", Code.Unimplemented);
5555
}
5656
}

0 commit comments

Comments
 (0)