try to authenticate request if logged in/ on pro
This commit is contained in:
parent
dd09b105ee
commit
47d8951535
|
@ -7,7 +7,6 @@ Route = TravisRoute.extend
|
|||
filter: { replace: true }
|
||||
model: ->
|
||||
apiEndpoint = config.apiEndpoint
|
||||
console.log(@auth)
|
||||
$.ajax(apiEndpoint + '/v3/repos?repository.active=true', {
|
||||
# $.ajax(apiEndpoint + '/v3/#{params.owner}?include=user.repositories,organization.repositories,build.commit', {
|
||||
headers: {
|
||||
|
|
|
@ -4,11 +4,19 @@
|
|||
`import config from 'travis/config/environment'`
|
||||
|
||||
Route = TravisRoute.extend
|
||||
|
||||
deactivate: ->
|
||||
@controllerFor('loading').set('layoutName', null)
|
||||
|
||||
model: (params) ->
|
||||
$.get(config.apiEndpoint + "/v3/owner/#{params.owner}")
|
||||
if @get('auth.signedIn')
|
||||
$.get(config.apiEndpoint + "/v3/owner/#{params.owner}", {
|
||||
headers: {
|
||||
Authorization: "token #{@auth.token()}"
|
||||
}
|
||||
})
|
||||
else
|
||||
$.get(config.apiEndpoint + "/v3/owner/#{params.owner}")
|
||||
|
||||
beforeModel: ->
|
||||
@controllerFor('loading').set('layoutName', 'simple')
|
||||
|
|
Loading…
Reference in New Issue
Block a user