Skip to content

Commit 8936ace

Browse files
authored
Merge pull request #357 from code0-tech/feat/display-message-flow-type
Correct flow type display messages
2 parents 303c17b + d745423 commit 8936ace

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

definitions/draco_cron/flow_types/cron.proto.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"displayMessage": [
2525
{
2626
"code": "en-US",
27-
"content": "Schedule Job ${cron_code}"
27+
"content": "Runs flow every ${cronMinute}min ${cronHour}hour ${cronDayOfMonth}day of month ${cronMonth}month ${cronDayOfWeek}day of week"
2828
}
2929
],
3030
"signature": "(cronMinute: CRON_MINUTE, cronHour: CRON_HOUR, cronDayOfMonth: CRON_DAY_OF_MONTH, cronMonth: CRON_MONTH, cronDayOfWeek: CRON_DAY_OF_WEEK): void",

definitions/draco_cron/runtime_flow_types/cron.proto.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"displayMessage": [
2424
{
2525
"code": "en-US",
26-
"content": "Schedule Job ${cron_code}"
26+
"content": "Runs flow every ${cronMinute}min ${cronHour}hour ${cronDayOfMonth}day of month ${cronMonth}month ${cronDayOfWeek}day of week"
2727
}
2828
],
2929
"signature": "(cronMinute: CRON_MINUTE, cronHour: CRON_HOUR, cronDayOfMonth: CRON_DAY_OF_MONTH, cronMonth: CRON_MONTH, cronDayOfWeek: CRON_DAY_OF_WEEK): void",

definitions/draco_rest/flow_types/rest.proto.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"displayMessage": [
1919
{
2020
"code": "en-US",
21-
"content": "Trigger Rest-Flow on ${method} with a Request to ${route}"
21+
"content": "Trigger Rest-Flow on ${httpMethod} with a Request to ${httpURL}"
2222
}
2323
],
2424
"alias": [

definitions/draco_rest/runtime_flow_types/rest.proto.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"displayMessage": [
1818
{
1919
"code": "en-US",
20-
"content": "Trigger Rest-Flow on ${method} with a Request to ${route}"
20+
"content": "Trigger Rest-Flow on ${httpMethod} with a Request to ${httpURL}"
2121
}
2222
],
2323
"alias": [

0 commit comments

Comments
 (0)