Sha256: f18d082fc2fa9cf38e7760308cf7cab7125d056460b11287b3b593a288e73fdc
Contents?: true
Size: 1.91 KB
Versions: 1
Compression:
Stored size: 1.91 KB
Contents
# frozen_string_literal: true # This file was auto-generated by lib/tasks/web.rake desc 'Bookmarks methods.' command 'bookmarks' do |g| g.desc 'Add bookmark to a channel.' g.long_desc %( Add bookmark to a channel. ) g.command 'add' do |c| c.flag 'channel_id', desc: 'Channel to add bookmark in.' c.flag 'title', desc: 'Title for the bookmark.' c.flag 'type', desc: 'Type of the bookmark i.e link.' c.flag 'emoji', desc: 'Emoji tag to apply to the link.' c.flag 'entity_id', desc: 'ID of the entity being bookmarked. Only applies to message and file types.' c.flag 'link', desc: 'Link to bookmark.' c.flag 'parent_id', desc: "Id of this bookmark's parent." c.action do |_global_options, options, _args| puts JSON.dump($client.bookmarks_add(options)) end end g.desc 'Edit bookmark.' g.long_desc %( Edit bookmark. ) g.command 'edit' do |c| c.flag 'bookmark_id', desc: 'Bookmark to update.' c.flag 'channel_id', desc: 'Channel to update bookmark in.' c.flag 'emoji', desc: 'Emoji tag to apply to the link.' c.flag 'link', desc: 'Link to bookmark.' c.flag 'title', desc: 'Title for the bookmark.' c.action do |_global_options, options, _args| puts JSON.dump($client.bookmarks_edit(options)) end end g.desc 'List bookmark for the channel.' g.long_desc %( List bookmark for the channel. ) g.command 'list' do |c| c.flag 'channel_id', desc: 'Channel to list bookmarks in.' c.action do |_global_options, options, _args| puts JSON.dump($client.bookmarks_list(options)) end end g.desc 'Remove bookmark from the channel.' g.long_desc %( Remove bookmark from the channel. ) g.command 'remove' do |c| c.flag 'bookmark_id', desc: 'Bookmark to remove.' c.flag 'channel_id', desc: 'Channel to remove bookmark.' c.action do |_global_options, options, _args| puts JSON.dump($client.bookmarks_remove(options)) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
slack-ruby-client-1.1.0 | bin/commands/bookmarks.rb |