lib/kentaa/api/clients/teams.rb in kentaa-api-0.3.2 vs lib/kentaa/api/clients/teams.rb in kentaa-api-0.4.0

- old
+ new

@@ -2,10 +2,13 @@ module Kentaa module Api module Clients class Teams < Base - include Kentaa::Api::Clients::All + def all(options = {}) + teams = Kentaa::Api::Resources::Teams.new(config, options) + teams.all + end def list(options = {}) teams = Kentaa::Api::Resources::Teams.new(config, options) teams.load end