diff --git a/lib/travis/api/v3/access_control/generic.rb b/lib/travis/api/v3/access_control/generic.rb index 14b9db8b..f5ea01a6 100644 --- a/lib/travis/api/v3/access_control/generic.rb +++ b/lib/travis/api/v3/access_control/generic.rb @@ -1,9 +1,5 @@ module Travis::API::V3 class AccessControl::Generic - DEFAULT_LIMIT = 25 - MAX_LIMT = 100 - NO_LIMIT = 2 ** 62 - 1 # larges Fixnum on MRI - def self.for_request(type, payload, env) end @@ -22,23 +18,6 @@ module Travis::API::V3 false end - # def limit(resource_type, value = nil) - # case value - # when ''.freeze, 'true'.freeze, true, nil then DEFAULT_LIMIT - # when 'false'.freeze, false then NO_LIMIT - # when /^\d+$/ then limit(resource_type, Integer(value)) - # when 0..MAX_LIMIT then value - # end - # # # TODO move to config - # # value = Time.now.to_i if value == false or value == 'false'.freeze - # # value = 25 if value.nil? or value == ''.freezee or value == - # # value = Integer(value) - # # value = 100 if value > 100 and not full_access? - # # value = 0 if value < 0 - # rescue TypeError - # raise WrongParams, 'limit must be a positive integer'.freeze, resource_type: resource_type - # end - protected def repository_visible?(repository)