Module: SlackChatter::Api::Namespaces
- Included in:
- Client
- Defined in:
- lib/slack_chatter/api/namespaces.rb
Instance Method Summary collapse
- #api ⇒ Object
- #auth ⇒ Object
- #channels ⇒ Object
- #chat ⇒ Object
- #emoji ⇒ Object
- #files ⇒ Object
- #groups ⇒ Object
- #im ⇒ Object
- #oauth ⇒ Object
- #rtm ⇒ Object
- #search ⇒ Object
- #stars ⇒ Object
- #team ⇒ Object
- #users ⇒ Object
Instance Method Details
#api ⇒ Object
20 21 22 |
# File 'lib/slack_chatter/api/namespaces.rb', line 20 def api @api ||= SlackChatter::Api::Api.new(self) end |
#auth ⇒ Object
24 25 26 |
# File 'lib/slack_chatter/api/namespaces.rb', line 24 def auth @auth ||= SlackChatter::Api::Auth.new(self) end |
#channels ⇒ Object
28 29 30 |
# File 'lib/slack_chatter/api/namespaces.rb', line 28 def channels @channels ||= SlackChatter::Api::Channels.new(self) end |
#chat ⇒ Object
32 33 34 |
# File 'lib/slack_chatter/api/namespaces.rb', line 32 def chat @chat ||= SlackChatter::Api::Chat.new(self) end |
#emoji ⇒ Object
36 37 38 |
# File 'lib/slack_chatter/api/namespaces.rb', line 36 def emoji @emoji ||= SlackChatter::Api::Emoji.new(self) end |
#files ⇒ Object
40 41 42 |
# File 'lib/slack_chatter/api/namespaces.rb', line 40 def files @files ||= SlackChatter::Api::Files.new(self) end |
#groups ⇒ Object
44 45 46 |
# File 'lib/slack_chatter/api/namespaces.rb', line 44 def groups @groups ||= SlackChatter::Api::Groups.new(self) end |
#im ⇒ Object
48 49 50 |
# File 'lib/slack_chatter/api/namespaces.rb', line 48 def im @im ||= SlackChatter::Api::Im.new(self) end |
#oauth ⇒ Object
52 53 54 |
# File 'lib/slack_chatter/api/namespaces.rb', line 52 def oauth @oath ||= SlackChatter::Api::Oauth.new(self) end |
#rtm ⇒ Object
56 57 58 |
# File 'lib/slack_chatter/api/namespaces.rb', line 56 def rtm @rtm ||= SlackChatter::Api::Rtm.new(self) end |
#search ⇒ Object
60 61 62 |
# File 'lib/slack_chatter/api/namespaces.rb', line 60 def search @search ||= SlackChatter::Api::Search.new(self) end |
#stars ⇒ Object
64 65 66 |
# File 'lib/slack_chatter/api/namespaces.rb', line 64 def stars @stars ||= SlackChatter::Api::Stars.new(self) end |
#team ⇒ Object
68 69 70 |
# File 'lib/slack_chatter/api/namespaces.rb', line 68 def team @team ||= SlackChatter::Api::Team.new(self) end |
#users ⇒ Object
72 73 74 |
# File 'lib/slack_chatter/api/namespaces.rb', line 72 def users @users ||= SlackChatter::Api::Users.new(self) end |