diff --git a/app/router.coffee b/app/router.coffee index a51732b6..0d6eb031 100644 --- a/app/router.coffee +++ b/app/router.coffee @@ -76,6 +76,6 @@ Router.map -> # @route 'running', path: '/running' @route 'error404', path: '/*path' - @route 'error404', path: '/404' + # @route 'error404', path: '/404' `export default Router` diff --git a/app/routes/owner/repositories.coffee b/app/routes/owner/repositories.coffee index da1e5988..404c2574 100644 --- a/app/routes/owner/repositories.coffee +++ b/app/routes/owner/repositories.coffee @@ -13,6 +13,6 @@ Route = TravisRoute.extend options = {} if @get('auth.signedIn') options.headers = { Authorization: "token #{@auth.token()}" } - $.ajax(config.apiEndpoint + "/v3/owner/#{params.owner}", options) + $.ajax(config.apiEndpoint + "/v3/owner/#{transition.params.owner.owner}?include=user.repositories,organization.repositories,build.commit,repository.active", options) `export default Route`