We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d477af3 commit 0354b64Copy full SHA for 0354b64
apps/backend/src/node/node.controller.ts
@@ -135,7 +135,7 @@ export class NodeController {
135
@ApiOperation({ summary: '특정 워크스페이스의 모든 노드들을 가져옵니다.' })
136
@Get('/workspace/:workspaceId')
137
@HttpCode(HttpStatus.OK)
138
- async findPagesByWorkspace(
+ async findNodesByWorkspace(
139
@Param('workspaceId') workspaceId: string, // Snowflake ID
140
): Promise<FindNodesResponseDto> {
141
const nodes = await this.nodeService.findNodesByWorkspace(workspaceId);
0 commit comments