module Slack::Endpoint::Pins

Public Instance Methods

pins_add(options={}) click to toggle source

Pins an item to a channel.

@option options [Object] :channel

Channel to pin the item in.

@option options [Object] :file

File to pin.

@option options [Object] :file_comment

File comment to pin.

@option options [Object] :timestamp

Timestamp of the message to pin.

@see api.slack.com/methods/pins.add @see github.com/aki017/slack-api-docs/blob/master/methods/pins.add.md @see github.com/aki017/slack-api-docs/blob/master/methods/pins.add.json

# File lib/slack/endpoint/pins.rb, line 20
def pins_add(options={})
  throw ArgumentError.new("Required arguments :channel missing") if options[:channel].nil?
  post("pins.add", options)
end
pins_list(options={}) click to toggle source

Lists items pinned to a channel.

@option options [Object] :channel

Channel to get pinned items for.

@see api.slack.com/methods/pins.list @see github.com/aki017/slack-api-docs/blob/master/methods/pins.list.md @see github.com/aki017/slack-api-docs/blob/master/methods/pins.list.json

# File lib/slack/endpoint/pins.rb, line 33
def pins_list(options={})
  throw ArgumentError.new("Required arguments :channel missing") if options[:channel].nil?
  post("pins.list", options)
end
pins_remove(options={}) click to toggle source

Un-pins an item from a channel.

@option options [Object] :channel

Channel where the item is pinned to.

@option options [Object] :file

File to un-pin.

@option options [Object] :file_comment

File comment to un-pin.

@option options [Object] :timestamp

Timestamp of the message to un-pin.

@see api.slack.com/methods/pins.remove @see github.com/aki017/slack-api-docs/blob/master/methods/pins.remove.md @see github.com/aki017/slack-api-docs/blob/master/methods/pins.remove.json

# File lib/slack/endpoint/pins.rb, line 52
def pins_remove(options={})
  throw ArgumentError.new("Required arguments :channel missing") if options[:channel].nil?
  post("pins.remove", options)
end