Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions components/hyros/actions/create-lead/create-lead.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,13 @@ export default {
],
optional: true,
},
leadStage: {
propDefinition: [
hyros,
"leadStage",
],
optional: true,
},
},
async run({ $ }) {
const {
Expand Down
5 changes: 5 additions & 0 deletions components/hyros/hyros.app.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@ export default {
label: "Phone Numbers",
description: "Phone numbers of the lead that will be created. Will be used on the Ad attributing proccess. `If no email is entered, a phone number is required`.",
},
leadStage: {
type: "string",
label: "Lead Stage",
description: "The name of a stage to be applied to the lead",
},
},
methods: {
_apiUrl() {
Expand Down
Loading