Skip to content

Commit 78e1a14

Browse files
committed
feat: redeploy
1 parent c740da3 commit 78e1a14

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

apps/backend/src/api/routes/users.controller.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ export class UsersController {
7575
}
7676

7777
@Get('/personal')
78-
async getPersonal(@GetUserFromRequest() user: User) {
78+
async getPersonalInformation(@GetUserFromRequest() user: User) {
7979
return this._userService.getPersonal(user.id);
8080
}
8181

apps/orchestrator/src/workflows/post.workflow.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ export async function postWorkflow({
8383
return;
8484
}
8585

86-
// if it's a repeatable post, we should ignore this
86+
// if it's a repeatable post, we should ignore this.
8787
if (!postNow) {
8888
if (dayjs(post.publishDate).isBefore(dayjs())) {
8989
return;

0 commit comments

Comments
 (0)