v3: avoid fetching the same repo owner over and over again when rendering a repo list
This commit is contained in:
parent
075e2d1c6c
commit
283092ff92
|
@ -23,8 +23,9 @@ module Travis::API::V3
|
||||||
end
|
end
|
||||||
|
|
||||||
def include_owner?
|
def include_owner?
|
||||||
return true if include? 'repository.owner'.freeze
|
return false if included_owner?
|
||||||
return true if include.any? { |i| i.start_with? owner_type or i.start_with? 'owner'.freeze }
|
return true if include? 'repository.owner'.freeze
|
||||||
|
return true if include.any? { |i| i.start_with? owner_type or i.start_with? 'owner'.freeze }
|
||||||
end
|
end
|
||||||
|
|
||||||
def included_owner?
|
def included_owner?
|
||||||
|
|
Loading…
Reference in New Issue
Block a user