feat: expand novel IP and production workflows
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user