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 c740da3 commit 78e1a14Copy full SHA for 78e1a14
apps/backend/src/api/routes/users.controller.ts
@@ -75,7 +75,7 @@ export class UsersController {
75
}
76
77
@Get('/personal')
78
- async getPersonal(@GetUserFromRequest() user: User) {
+ async getPersonalInformation(@GetUserFromRequest() user: User) {
79
return this._userService.getPersonal(user.id);
80
81
apps/orchestrator/src/workflows/post.workflow.ts
@@ -83,7 +83,7 @@ export async function postWorkflow({
83
return;
84
85
86
- // if it's a repeatable post, we should ignore this
+ // if it's a repeatable post, we should ignore this.
87
if (!postNow) {
88
if (dayjs(post.publishDate).isBefore(dayjs())) {
89
0 commit comments