module Geekbot::ApiMethods

Public Instance Methods

create_standup(params: nil, headers: nil) click to toggle source
# File lib/geekbot/api_methods.rb, line 21
def create_standup(params: nil, headers: nil)
  post('/v1/standups', params, headers)
end
destroy_standup(id:, params: nil, headers: nil) click to toggle source
# File lib/geekbot/api_methods.rb, line 33
def destroy_standup(id:, params: nil, headers: nil)
  delete("/v1/standups/#{id}", params, headers)
end
index_reports(params: nil, headers: nil) click to toggle source
# File lib/geekbot/api_methods.rb, line 9
def index_reports(params: nil, headers: nil)
  get('/v1/reports', params, headers)
end
index_standups(params: nil, headers: nil) click to toggle source
# File lib/geekbot/api_methods.rb, line 13
def index_standups(params: nil, headers: nil)
  get('/v1/standups', params, headers)
end
index_teams(params: nil, headers: nil) click to toggle source
# File lib/geekbot/api_methods.rb, line 5
def index_teams(params: nil, headers: nil)
  get('/v1/teams', params, headers)
end
replace_standup(id:, params: nil, headers: nil) click to toggle source
# File lib/geekbot/api_methods.rb, line 29
def replace_standup(id:, params: nil, headers: nil)
  put("/v1/standups/#{id}", params, headers)
end
show_standup(id:, params: nil, headers: nil) click to toggle source
# File lib/geekbot/api_methods.rb, line 17
def show_standup(id:, params: nil, headers: nil)
  get("/v1/standups/#{id}", params, headers)
end
update_standup(id:, params: nil, headers: nil) click to toggle source
# File lib/geekbot/api_methods.rb, line 25
def update_standup(id:, params: nil, headers: nil)
  patch("/v1/standups/#{id}", params, headers)
end