class Rodzilla::Resource::Product

Bugzilla::Webservice::Product - The Product API This part of the Bugzilla API allows you to list the available Products and get information about them.

Public Instance Methods

get_accessible_products() click to toggle source
# File lib/rodzilla/resource/product.rb, line 16
def get_accessible_products
  rpc_call :get_accessible_products
end
get_enterable_products() click to toggle source
# File lib/rodzilla/resource/product.rb, line 12
def get_enterable_products
  rpc_call :get_selectable_products
end
get_products(params={}) click to toggle source
# File lib/rodzilla/resource/product.rb, line 20
def get_products(params={})
  rpc_call :get, params
end
get_selectable_products() click to toggle source

Returns a list of the ids of the products the user can search on.

# File lib/rodzilla/resource/product.rb, line 8
def get_selectable_products
  rpc_call :get_selectable_products
end