Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
weissreto committed Mar 6, 2024
1 parent 4a026a1 commit fb4b15e
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@
"*/",
"BusinessNotification",
" .create()",
" .message().fromCms(\"/Notification/Messages/OrderDelivered\", in.order.product, in.customer.surname, in.customer.name)",
" .message().fromCms(\"OrderDelivered\", in.order.product, in.customer.surname, in.customer.name)",
" .receivers().ofCase().addAllInvolved()",
" .send();"
]
Expand Down Expand Up @@ -281,7 +281,7 @@
" .create()",
" .template(\"Order\")",
" .payload(in.customer)",
" .message().fromCms(\"/Notification/Messages/InvoiceSent\", in.order.product)",
" .message().fromCms(\"InvoiceSent\", in.order.product)",
" .receivers().ofTask().addActivator()",
" .send();"
]
Expand Down Expand Up @@ -350,7 +350,7 @@
" .create()",
" .template(\"Order\")",
" .payload(in.customer)",
" .message().fromCms(\"/Notification/Messages/OrderFinished\", in.order.product)",
" .message().fromCms(\"OrderFinished\", in.order.product)",
" .receivers().ofCase().addAllInvolved()",
" .send();"
]
Expand Down

0 comments on commit fb4b15e

Please sign in to comment.