-
Notifications
You must be signed in to change notification settings - Fork 311
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
Use id instead of action_id as per the mgmt api. #622
Conversation
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.
0b87bbd
to
0b4247e
Compare
0b4247e
to
53496df
Compare
@davidpatrick is this something you guys can handle? I'm not sure how to make it backwards compatible. |
Hey @stevezau I've already gone and updated the PR with the changes. Thanks for the response |
if (params.action_id) { | ||
params.id = params.action_id; | ||
delete params.action_id; | ||
} |
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.
👏
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.
Looks great! thanks for making this backwards compatible.
Changes
Updated API to use id instead of
trigger_idaction_id so it repesents the management API.