Sha256: 19fd0c1f6d1c71a9426d67559381ca4fd0399ad51e11053a35d544c3569efde7
Contents?: true
Size: 1.21 KB
Versions: 3
Compression:
Stored size: 1.21 KB
Contents
# frozen_string_literal: true # This file was auto-generated by lib/tasks/web.rake desc 'Pins methods.' command 'pins' do |g| g.desc 'Pins an item to a channel.' g.long_desc %( Pins an item to a channel. ) g.command 'add' do |c| c.flag 'channel', desc: 'Channel to pin the messsage to. You must also include a timestamp when pinning messages.' c.flag 'timestamp', desc: 'Timestamp of the message to pin. You must also include the channel.' c.action do |_global_options, options, _args| puts JSON.dump($client.pins_add(options)) end end g.desc 'Lists items pinned to a channel.' g.long_desc %( Lists items pinned to a channel. ) g.command 'list' do |c| c.flag 'channel', desc: 'Channel to get pinned items for.' c.action do |_global_options, options, _args| puts JSON.dump($client.pins_list(options)) end end g.desc 'Un-pins an item from a channel.' g.long_desc %( Un-pins an item from a channel. ) g.command 'remove' do |c| c.flag 'channel', desc: 'Channel where the item is pinned to.' c.flag 'timestamp', desc: 'Timestamp of the message to un-pin.' c.action do |_global_options, options, _args| puts JSON.dump($client.pins_remove(options)) end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
slack-ruby-client-2.0.0 | bin/commands/pins.rb |
slack-ruby-client-1.1.0 | bin/commands/pins.rb |
slack-ruby-client-1.0.0 | bin/commands/pins.rb |