Skip to content

Commit

Permalink
#1818: no longer send triggered send key / id during CREATE and dont …
Browse files Browse the repository at this point in the history
…save it during templating to ensure a clean new clone in the journey metadata
  • Loading branch information
JoernBerkefeld committed Nov 2, 2024
1 parent 6916f4c commit e350d1e
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions lib/metadataTypes/definitions/Journey.definition.js
Original file line number Diff line number Diff line change
Expand Up @@ -118,12 +118,40 @@ export default {
retrieving: true,
template: true,
},
'activities[].configurationArguments.triggeredSendKey': {
// if used during create then we are stuck with old data
isCreateable: false,
isUpdateable: true,
retrieving: true,
template: false,
},
'activities[].configurationArguments.triggeredSendId': {
// if used during create then we are stuck with old data
isCreateable: false,
isUpdateable: true,
retrieving: true,
template: false,
},
'activities[].configurationArguments.triggeredSend': {
isCreateable: true,
isUpdateable: true,
retrieving: true,
template: true,
},
'activities[].configurationArguments.triggeredSend.id': {
// if used during create then we are stuck with old data
isCreateable: false,
isUpdateable: true,
retrieving: true,
template: false,
},
'activities[].configurationArguments.triggeredSend.key': {
// if used during create then we are stuck with old data
isCreateable: false,
isUpdateable: true,
retrieving: true,
template: false,
},
'activities[].configurationArguments.triggeredSend.autoAddSubscribers': {
isCreateable: true,
isUpdateable: true,
Expand Down

0 comments on commit e350d1e

Please sign in to comment.