Module: Slack::Web::Search

Included in:
Slack::Web
Defined in:
lib/slack/web/search.rb

Constant Summary collapse

SCOPE =
"search"

Instance Method Summary collapse

Instance Method Details

#search_all(query, sort, sort_dir, highlight, count, page) ⇒ Object

Searches for messages and files matching a query.



7
8
9
# File 'lib/slack/web/search.rb', line 7

def search_all(query, sort, sort_dir, highlight, count, page)
  raise NotImplementedError.new("Not yet implemented, feel free to make a pull request")
end

#search_files(query, sort, sort_dir, highlight, count, page) ⇒ Object

Searches for files matching a query.



12
13
14
# File 'lib/slack/web/search.rb', line 12

def search_files(query, sort, sort_dir, highlight, count, page)
  raise NotImplementedError.new("Not yet implemented, feel free to make a pull request")
end

#search_messages(query, sort, sort_dir, highlight, count, page) ⇒ Object

Searches for messages matching a query.



17
18
19
# File 'lib/slack/web/search.rb', line 17

def search_messages(query, sort, sort_dir, highlight, count, page)
  raise NotImplementedError.new("Not yet implemented, feel free to make a pull request")
end