Skip to content
Snippets Groups Projects
Commit 6741ac2a authored by Sebastian Mihalache's avatar Sebastian Mihalache
Browse files

feat(component-manuscript-manager): remove author from publish/reject recommendations

parent 31d0bedb
No related branches found
No related tags found
1 merge request!10Sprint #12
......@@ -89,15 +89,16 @@ module.exports = models => async (req, res) => {
fragment: { title, id, authorName },
comments: newRecommendation.comments,
})
await userHelper.setupAuthorRequestToRevisionEmailData({
baseUrl,
UserModel: models.User,
collection,
mailService,
recommendation,
fragment: { title, id, submittingAuthor },
comments: newRecommendation.comments,
})
if (['minor', 'major'].includes(recommendation))
await userHelper.setupAuthorRequestToRevisionEmailData({
baseUrl,
UserModel: models.User,
collection,
mailService,
recommendation,
fragment: { title, id, submittingAuthor },
comments: newRecommendation.comments,
})
}
fragment.recommendations.push(newRecommendation)
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment