-
Notifications
You must be signed in to change notification settings - Fork 433
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
feat(api,sdk,ui): advanced parameters #3163
Conversation
Signed-off-by: Yvonnick Esnault <[email protected]>
Signed-off-by: Yvonnick Esnault <[email protected]>
return nil, err | ||
} | ||
p.Type = pType | ||
p.Value = val | ||
p.Advanced = advanced |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don’t see where advanced is fill before
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed
Signed-off-by: Yvonnick Esnault <[email protected]>
@@ -0,0 +1,10 @@ | |||
-- +migrate Up | |||
ALTER TABLE action_edge_parameter ADD COLUMN advanced BOOLEAN; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
NOT NULL
@@ -0,0 +1,10 @@ | |||
-- +migrate Up | |||
ALTER TABLE action_edge_parameter ADD COLUMN advanced BOOLEAN; | |||
ALTER TABLE action_parameter ADD COLUMN advanced BOOLEAN; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
NOT NULL
Signed-off-by: Yvonnick Esnault <[email protected]>
No description provided.