-
Notifications
You must be signed in to change notification settings - Fork 120
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feat/use handlebars for mailing #828
Conversation
api/src/logger/logger.service.ts
Outdated
if ( | ||
arg && | ||
type === 'error' && | ||
typeof arg === 'object' && | ||
'stack' in arg | ||
) { | ||
super[type](arg.stack); | ||
} else { | ||
super[type](arg); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's move this to another PR
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
its already in different PR #825
The reason it's appearing in this PR is i checkout from that branch should be removed we merge!
|
||
module.exports = { | ||
async up(services: MigrationServices) { | ||
await updateContextVarsHandleBarsSyntaxe2(MigrationAction.UP, services); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
await updateContextVarsHandleBarsSyntaxe2(MigrationAction.UP, services); | |
await updateContextVarsHandleBarsSyntax(MigrationAction.UP, services); |
In addition we need to have support for translations
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed it here #823
3a3366b
to
bd4c18e
Compare
Closed in favor of the rebased one : #836 |
Motivation
Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change.
Fixes #827
Type of change:
Please delete options that are not relevant.
Checklist: