feat: expand novel IP and production workflows

This commit is contained in:
www
2026-09-18 08:14:05 +02:00
parent b2ae4600b4
commit d9c81a3ac0
235 changed files with 117971 additions and 2721 deletions
+9 -1
View File
@@ -48,7 +48,7 @@ export class MemoriesController {
@Param('projectId') projectId: string,
@Body() dto: GeneratePlotMemoriesDto
) {
return this.memoriesService.generatePlotMemories(user, projectId, dto);
return this.memoriesService.submitPlotMemoryGeneration(user, projectId, dto);
}
@Post('projects/:projectId/plot-memories')
@@ -86,6 +86,14 @@ export class MemoriesController {
return this.memoriesService.listCharacterMemories(user, characterId);
}
@Get('projects/:projectId/character-memories')
listProjectCharacterMemories(
@CurrentUser() user: AuthRequestUser,
@Param('projectId') projectId: string
) {
return this.memoriesService.listProjectCharacterMemories(user, projectId);
}
@Get('projects/:projectId/plot-threads')
listPlotThreads(
@CurrentUser() user: AuthRequestUser,