Skip to content

Commit

Permalink
solución al guardado de closingAt como fecha
Browse files Browse the repository at this point in the history
  • Loading branch information
mpvaldez committed Feb 29, 2024
1 parent 407b3a4 commit b20a107
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/lib/api/forum.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ function createForum(req, res, next) {
permissions: req.body.permissions,
extra: {
richSummary: req.body.richSummary,
closingAt: req.body.closingAt,
closingAt: new Date(req.body.closingAt),
contentType: req.body.contentType,
palabrasCierre: req.body.palabrasCierre,
linkCierre: req.body.linkCierre,
Expand Down

0 comments on commit b20a107

Please sign in to comment.