feat: redeploy

This commit is contained in:
Nevo David 2026-01-05 17:41:04 +07:00
parent c740da360b
commit 78e1a14388
2 changed files with 2 additions and 2 deletions

View File

@ -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);
}

View File

@ -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;