lib/kentaa/api/clients/projects.rb in kentaa-api-0.3.2 vs lib/kentaa/api/clients/projects.rb in kentaa-api-0.4.0
- old
+ new
@@ -2,10 +2,13 @@
module Kentaa
module Api
module Clients
class Projects < Base
- include Kentaa::Api::Clients::All
+ def all(options = {})
+ projects = Kentaa::Api::Resources::Projects.new(config, options)
+ projects.all
+ end
def list(options = {})
projects = Kentaa::Api::Resources::Projects.new(config, options)
projects.load
end