MCPcopy Create free account
hub / github.com/ShipSecAI/studio / get

Method get

backend/src/api-keys/api-keys.controller.ts:66–69  ·  view source on GitHub ↗
(@CurrentAuth() auth: AuthContext, @Param('id') id: string)

Source from the content-addressed store, hash-verified

64 @Get(':id')
65 @ApiOkResponse({ type: ApiKeyResponseDto })
66 async get(@CurrentAuth() auth: AuthContext, @Param('id') id: string) {
67 const apiKey = await this.apiKeysService.get(auth, id);
68 return ApiKeyResponseDto.create(apiKey);
69 }
70
71 @Patch(':id')
72 @Roles('ADMIN')

Callers

nothing calls this directly

Calls 2

getMethod · 0.65
createMethod · 0.45

Tested by

no test coverage detected