diff --git a/apps/backend/src/api/routes/users.controller.ts b/apps/backend/src/api/routes/users.controller.ts index 88e80263..bdbcb46c 100644 --- a/apps/backend/src/api/routes/users.controller.ts +++ b/apps/backend/src/api/routes/users.controller.ts @@ -75,7 +75,7 @@ export class UsersController { } @Get('/personal') - async getPersonal(@GetUserFromRequest() user: User) { + async getPersonalInformation(@GetUserFromRequest() user: User) { return this._userService.getPersonal(user.id); } diff --git a/apps/orchestrator/src/workflows/post.workflow.ts b/apps/orchestrator/src/workflows/post.workflow.ts index 8fe685b2..75ef3c64 100644 --- a/apps/orchestrator/src/workflows/post.workflow.ts +++ b/apps/orchestrator/src/workflows/post.workflow.ts @@ -83,7 +83,7 @@ export async function postWorkflow({ return; } - // if it's a repeatable post, we should ignore this + // if it's a repeatable post, we should ignore this. if (!postNow) { if (dayjs(post.publishDate).isBefore(dayjs())) { return;