Module: BWAPI::Client::Projects::Categories
- Included in:
- BWAPI::Client::Projects
- Defined in:
- lib/bwapi/client/projects/categories.rb
Overview
Categories module for projects/categories endpoints
Instance Method Summary collapse
-
#categories(id, opts = {}) ⇒ Hashie::Mash
Get all categories in project.
-
#create_category(id, opts = {}) ⇒ Hashie::Mash
Create a new category in project.
-
#delete_category(project_id, category_id) ⇒ Hashie::Mash
Delete and existing category in project.
-
#update_category(project_id, category_id, opts = {}) ⇒ Hashie::Mash
Update an existing category in project.
Instance Method Details
#categories(id, opts = {}) ⇒ Hashie::Mash
Get all categories in project
14 15 16 |
# File 'lib/bwapi/client/projects/categories.rb', line 14 def categories id, opts={} get "projects/#{id}/categories", opts end |
#create_category(id, opts = {}) ⇒ Hashie::Mash
Create a new category in project
39 40 41 |
# File 'lib/bwapi/client/projects/categories.rb', line 39 def create_category id, opts={} post "projects/#{id}/categories", opts end |
#delete_category(project_id, category_id) ⇒ Hashie::Mash
Delete and existing category in project
64 65 66 |
# File 'lib/bwapi/client/projects/categories.rb', line 64 def delete_category project_id, category_id delete "projects/#{project_id}/categories/#{category_id}" end |
#update_category(project_id, category_id, opts = {}) ⇒ Hashie::Mash
Update an existing category in project
54 55 56 |
# File 'lib/bwapi/client/projects/categories.rb', line 54 def update_category project_id, category_id, opts={} put "projects/#{project_id}/categories/#{category_id}", opts end |