Module: BWAPI::Client::Projects::Categories
- Includes:
- Copy
- Included in:
- BWAPI::Client::Projects
- Defined in:
- lib/bwapi/client/projects/categories.rb,
lib/bwapi/client/projects/categories/copy.rb
Overview
Categories module for projects/categories endpoints
Defined Under Namespace
Modules: Copy
Instance Method Summary collapse
-
#categories(project_id, opts = {}) ⇒ Hashie::Mash
Get all categories in project.
-
#create_category(project_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.
Methods included from Copy
Instance Method Details
#categories(project_id, opts = {}) ⇒ Hashie::Mash
Get all categories in project
17 18 19 |
# File 'lib/bwapi/client/projects/categories.rb', line 17 def categories(project_id, opts = {}) get "projects/#{project_id}/categories", opts end |
#create_category(project_id, opts = {}) ⇒ Hashie::Mash
Create a new category in project
30 31 32 |
# File 'lib/bwapi/client/projects/categories.rb', line 30 def create_category(project_id, opts = {}) post "projects/#{project_id}/categories", opts end |
#delete_category(project_id, category_id) ⇒ Hashie::Mash
Delete and existing category in project
53 54 55 |
# File 'lib/bwapi/client/projects/categories.rb', line 53 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
44 45 46 |
# File 'lib/bwapi/client/projects/categories.rb', line 44 def update_category(project_id, category_id, opts = {}) put "projects/#{project_id}/categories/#{category_id}", opts end |