module Closeio::Client::CustomActivityType

Public Instance Methods

find_custom_activity_type(id) click to toggle source
# File lib/closeio/resources/custom_activity_type.rb, line 8
def find_custom_activity_type(id)
  get("#{custom_activity_type_path}#{id}/")
end
list_custom_activity_types() click to toggle source
# File lib/closeio/resources/custom_activity_type.rb, line 4
def list_custom_activity_types
  get(custom_activity_type_path)
end

Private Instance Methods

custom_activity_type_path() click to toggle source
# File lib/closeio/resources/custom_activity_type.rb, line 14
def custom_activity_type_path
  'custom_activity/'
end