Skip to content
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

uik: Add defaultValue to dynamic action params #3976

Merged
merged 17 commits into from
Jul 10, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
add dynamic param for slack
  • Loading branch information
mastercactapus committed Jul 9, 2024
commit ccc75f15e3ca8ae24c6ca9d4096793246748a843
5 changes: 5 additions & 0 deletions graphql2/graphqlapp/destinationtypes.go
Original file line number Diff line number Diff line change
@@ -393,6 +393,11 @@ func (q *Query) DestinationTypes(ctx context.Context, isDynamicAction *bool) ([]
InputType: "text",
SupportsSearch: true,
}},
DynamicParams: []graphql2.DynamicParamConfig{{
ParamID: "message",
Label: "Message",
Hint: "The text of the message to send.",
}},
},
{
Type: destSlackUG,