Skip to content
Snippets Groups Projects

fix(emails): fix author recieving wrong email

Merged Bogdan Cochior requested to merge HIN-835 into develop
All threads resolved!
1 file
+ 19
13
Compare changes
  • Side-by-side
  • Inline
const config = require('config')
const config = require('config')
const { chain, get } = require('lodash')
const { chain, get, isEmpty } = require('lodash')
const {
const {
User,
User,
@@ -58,9 +58,13 @@ module.exports = {
@@ -58,9 +58,13 @@ module.exports = {
comments = eicComments
comments = eicComments
}
}
 
 
const hasPeerReview = (collection = {}) =>
 
!isEmpty(collection.handlingEditor)
 
if (
if (
(isEditorInChief || newRecommendation.recommendationType === 'review') &&
(isEditorInChief || newRecommendation.recommendationType === 'review') &&
collection.status !== 'rejected'
hasPeerReview(collection)
) {
) {
// the request came from either the Editor in Chief or a reviewer, so the HE needs to be notified
// the request came from either the Editor in Chief or a reviewer, so the HE needs to be notified
sendHandlingEditorEmail({
sendHandlingEditorEmail({
@@ -81,17 +85,19 @@ module.exports = {
@@ -81,17 +85,19 @@ module.exports = {
newRecommendation.recommendationType !== 'review' &&
newRecommendation.recommendationType !== 'review' &&
newRecommendation.recommendation !== 'return-to-handling-editor'
newRecommendation.recommendation !== 'return-to-handling-editor'
) {
) {
sendAuthorsEmail({
if (isEditorInChief || collection.status === 'revisionRequested') {
email,
sendAuthorsEmail({
baseUrl,
email,
titleText,
baseUrl,
parsedFragment,
titleText,
fragmentAuthors,
parsedFragment,
isEditorInChief,
fragmentAuthors,
subjectBaseText,
isEditorInChief,
newRecommendation,
subjectBaseText,
})
newRecommendation,
if (collection.status !== 'rejected') {
})
 
}
 
if (hasPeerReview(collection)) {
sendReviewersEmail({
sendReviewersEmail({
email,
email,
baseUrl,
baseUrl,