Skip to content

Commit 8557d95

Browse files
committed
Fix
1 parent 1a67783 commit 8557d95

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

components/server/src/api/user.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
* See License.AGPL.txt in the project root for license information.
55
*/
66

7+
import { injectable } from "inversify";
78
import { ServiceImpl, ConnectError, Code } from "@bufbuild/connect";
89
import { UserService as UserServiceInterface } from "@gitpod/public-api/lib/gitpod/experimental/v1/user_connectweb";
910
import {
@@ -23,6 +24,7 @@ import {
2324
BlockUserResponse,
2425
} from "@gitpod/public-api/lib/gitpod/experimental/v1/user_pb";
2526

27+
@injectable()
2628
export class UserService implements ServiceImpl<typeof UserServiceInterface> {
2729
async getAuthenticatedUser(req: GetAuthenticatedUserRequest): Promise<GetAuthenticatedUserResponse> {
2830
throw new ConnectError("unimplemented", Code.Unimplemented);

0 commit comments

Comments
 (0)