lib/slack/web/api/mixins/conversations.id.rb in slack-ruby-client-0.15.0 vs lib/slack/web/api/mixins/conversations.id.rb in slack-ruby-client-0.15.1
- old
+ new
@@ -14,12 +14,10 @@
# Channel to get ID for, prefixed with #.
def conversations_id(options = {})
name = options[:channel]
throw ArgumentError.new('Required arguments :channel missing') if name.nil?
- id_for(:channel, name, '#', :channels, 'channel_not_found') do
- conversations_list
- end
+ id_for :channel, name, '#', :conversations_list, :channels, 'channel_not_found'
end
end
end
end
end