module Slack::Web::Api::Mixins::Groups

def groups_id(options = {})

Options Hash: (**options)
  • :channel (channel) --
def groups_id(options = {})
  name = options[:channel]
  throw ArgumentError.new('Required arguments :channel missing') if name.nil?
  id_for(:group, name, '#', :groups, 'channel_not_found') do
    groups_list
  end
end