-
Notifications
You must be signed in to change notification settings - Fork 1
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
Fix test_post_message and add get_channel_id pipeline #17
Fix test_post_message and add get_channel_id pipeline #17
Conversation
pipelines/chat/delete_message.fp
Outdated
@@ -18,6 +18,18 @@ pipeline "delete_message" { | |||
description = "Timestamp of the message to be deleted." | |||
} | |||
|
|||
step "pipeline" "list_channels" { |
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.
Can we update the param channel as channel_id and use it in the API directly? As param channel
is not clear on name or id. We can avoid the list call.
pipelines/chat/delete_message.fp
Outdated
@@ -18,6 +18,13 @@ pipeline "delete_message" { | |||
description = "Timestamp of the message to be deleted." | |||
} | |||
|
|||
step "pipeline" "get_channel_id" { | |||
pipeline = pipeline.get_channel_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.
@judell, Could you please add the pipeline get_channel_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.
Oops, sorry, forgot to check it in! It's there now.
fixes #16