Module: Castle::ClientActions::Lists
- Included in:
- Castle::Client
- Defined in:
- lib/castle/client_actions/lists.rb
Overview
Client actions for lists
Instance Method Summary collapse
- #create_list(options = {}) ⇒ Object
- #delete_list(options = {}) ⇒ Object
- #get_all_lists(options = {}) ⇒ Object
- #get_list(options = {}) ⇒ Object
- #query_lists(options = {}) ⇒ Object
- #update_list(options = {}) ⇒ Object
Instance Method Details
#create_list(options = {}) ⇒ Object
9 10 11 |
# File 'lib/castle/client_actions/lists.rb', line 9 def create_list( = {}) Castle::API::Lists::Create.call() end |
#delete_list(options = {}) ⇒ Object
14 15 16 |
# File 'lib/castle/client_actions/lists.rb', line 14 def delete_list( = {}) Castle::API::Lists::Delete.call() end |
#get_all_lists(options = {}) ⇒ Object
19 20 21 |
# File 'lib/castle/client_actions/lists.rb', line 19 def get_all_lists( = {}) Castle::API::Lists::GetAll.call() end |
#get_list(options = {}) ⇒ Object
24 25 26 |
# File 'lib/castle/client_actions/lists.rb', line 24 def get_list( = {}) Castle::API::Lists::Get.call() end |