MCPcopy Create free account
hub / github.com/CodeFox-Repo/codefox / getUserAvatar

Method getUserAvatar

backend/src/user/user.resolver.ts:123–126  ·  view source on GitHub ↗
(@Args('userId') userId: string)

Source from the content-addressed store, hash-verified

121 @Mutation(() => User)
122 @UseGuards(JWTAuthGuard)
123 async updateUsername(
124 @GetUserIdFromToken() userId: string,
125 @Args('username') username: string,
126 ): Promise<User> {
127 return this.userService.updateUsername(userId, username);
128 }
129

Callers

nothing calls this directly

Calls 1

getUserMethod · 0.45

Tested by

no test coverage detected