display actiavte options on not-active of if user has pushPermissions

This commit is contained in:
Lisa P 2015-08-17 10:15:09 +02:00
parent 75ce90fc03
commit e4b689b0d5
4 changed files with 6 additions and 5 deletions

View File

@ -41,7 +41,7 @@ Controller = Ember.ArrayController.extend
false
).property('tab', 'repo.builds', 'repo.branches')
things: (->
noticeData: (->
return {
repo: @get('repo'),
auth: @auth.token()

View File

@ -1,9 +1,8 @@
{{#if content.isLoaded}}
{{!-- <table id="builds" class="list"> --}}
{{#each controller as |build|}}
{{builds-item build=build}}
{{else}}
{{no-builds repo=things isPR=displayPullRequests isBranch=displayBranches}}
{{no-builds repo=noticeData isPR=displayPullRequests isBranch=displayBranches}}
{{/each}}
{{#if displayShowMoreButton}}
<p>

View File

@ -63,5 +63,7 @@
<h2 class="page-title">This is not an active repository</h2>
<p class="page-notice">Want to start testing this project on Travis CI?</p>
<a href="http://docs.travis-ci.com/user/getting-started/" class="button button--green">Read the Docs on Getting Started</a>
<p>If this repository is already in active use, <br> make sure its activated on {{#link-to "profile"}}your profile{{/link-to}}.</p>
{{#if user.pushPermissions.length}}
<p>If this repository is already in active use, <br> make sure its activated on {{#link-to "account" repo.owner}}your profile{{/link-to}}.</p>
{{/if}}
</div>

View File

@ -29,7 +29,7 @@
{{#if repo.lastBuildId}}
{{outlet}}
{{else}}
{{not-active}}
{{not-active user=currentUser repo=repo}}
{{/if}}
{{/if}}
</div>