-
Notifications
You must be signed in to change notification settings - Fork 24
Add support for thread messages #44
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
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.
Nice one @MrRTi looks good 👍
@@ -104,14 +104,14 @@ | |||
end | |||
|
|||
describe '#list_all' do | |||
let(:room1) do | |||
let(:room_one) do |
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.
although I get why the lint exists, in the this case it's not really an issue. I've already "fixed" this by just allowing up to 2 indexed let variables. But this is fine too
@@ -3,5 +3,7 @@ | |||
require 'spec_helper' | |||
|
|||
describe RocketChat::Room do | |||
pending 'Add some specs for RocketChat::Room' | |||
it 'RocketChat::Room spec', pending: 'Add some specs for RocketChat::Room' do |
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 sure why you've changed this? If it's for linter reasons, the previous form was just fine?!
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.
Yes, RSpec/PendingWithoutReason was raised. Rubocop in actions is not using rubocop.yml from project root, and pipeline was failing because of these two issues I've updated in this PR. All was good when I run rubocop locally
Released in v0.2.2 |
tmid
could be used to send message to specific threadsession.chat.post_message(room_id: 'channel_id', tmid: 'message_id', text: 'text')