File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed
components/server/src/api Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change 4
4
* See License.AGPL.txt in the project root for license information.
5
5
*/
6
6
7
+ import { injectable } from "inversify" ;
7
8
import { ServiceImpl , ConnectError , Code } from "@bufbuild/connect" ;
8
9
import { UserService as UserServiceInterface } from "@gitpod/public-api/lib/gitpod/experimental/v1/user_connectweb" ;
9
10
import {
@@ -23,6 +24,7 @@ import {
23
24
BlockUserResponse ,
24
25
} from "@gitpod/public-api/lib/gitpod/experimental/v1/user_pb" ;
25
26
27
+ @injectable ( )
26
28
export class UserService implements ServiceImpl < typeof UserServiceInterface > {
27
29
async getAuthenticatedUser ( req : GetAuthenticatedUserRequest ) : Promise < GetAuthenticatedUserResponse > {
28
30
throw new ConnectError ( "unimplemented" , Code . Unimplemented ) ;
You can’t perform that action at this time.
0 commit comments