Skip to content

Commit

Permalink
Merge pull request #24 from DemocraciaEnRed/1.7.1
Browse files Browse the repository at this point in the history
Ready for 1.7.1
  • Loading branch information
guillecro authored Feb 6, 2020
2 parents 7b64fb1 + ecc0911 commit aae9883
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 3 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

**1.7.1**

- Mejorado como se loguean los errores del notifier

_Compatible con leyesabiertas-notifier:1.7.1 y leyesabiertas-web:1.7.1_


**1.7.0**

- Agregado sort querystring y otros controles del paginado en /documents/my-documents

_Compatible con leyesabiertas-notifier:1.5.0 y leyesabiertas-web:1.7.0_


**1.6.0**

- Ahora al iniciar el servidor, hay una nueva rutina que actualiza los fields de un custom form, por si hay nuevos campos que ir agregando en el tiempo. En este caso, se agrego `customVideoId` que seria la url que funciona con el reproductor para el servidor de streaming para la HCDN.
Expand Down
9 changes: 6 additions & 3 deletions services/notifier.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ exports.sendCommentNotification = async (notificationType, commentId) => {
}).catch((error) => {
log.error('ERROR Sending Email', {
meta: payload,
message: error.message
message: error.message,
data: error.response.data
})
})
}
Expand All @@ -29,7 +30,8 @@ exports.sendNewCommentNotification = async (notificationType, commentId) => {
}).catch((error) => {
log.error('ERROR Sending Email', {
meta: payload,
message: error.message
message: error.message,
data: error.response.data
})
})
}
Expand All @@ -44,7 +46,8 @@ exports.setDocumentClosesNotification = async (documentId, closingDate) => {
}).catch((error) => {
log.error('ERROR Setting document closes event', {
error: error.message,
meta: payload
meta: payload,
data: error.response.data
})
})
}

0 comments on commit aae9883

Please sign in to comment.