set limit in branch query to 100

This commit is contained in:
Lisa P 2015-10-09 14:52:09 +02:00
parent f9ac2e6a76
commit 7f57466484

View File

@ -12,7 +12,7 @@ Route = TravisRoute.extend
if @get('auth.signedIn')
options.headers = { Authorization: "token #{@auth.token()}" }
$.ajax("#{apiEndpoint}/v3/repo/#{repoId}/branches?include=build.commit", options).then (response) ->
$.ajax("#{apiEndpoint}/v3/repo/#{repoId}/branches?include=build.commit&limit=100", options).then (response) ->
response.branches
activate: () ->