class Slack::CLI::Channels

Public Instance Methods

history(channel_id) click to toggle source
# File lib/slack/cli/channels.rb, line 10
def history(channel_id)
  puts client.channels.history(channel: channel_id)
end
info(channel_id) click to toggle source
# File lib/slack/cli/channels.rb, line 15
def info(channel_id)
  puts client.channels.history(channel: channel_id)
end
list() click to toggle source
# File lib/slack/cli/channels.rb, line 5
def list
  puts client.channels.list
end