Display remove log only when user hasPermissions to use it
This commit is contained in:
parent
eb78d62adb
commit
aca82a0379
|
@ -39,11 +39,15 @@
|
|||
</li>
|
||||
{{/if}}
|
||||
{{/if}}
|
||||
{{#if view.displayRemoveLog}}
|
||||
<li class="icon remove-log" title="Remove Log">
|
||||
<a href="#" name="remove-log-popup" class="open-popup" {{action "removeLogPopup" target=view}}
|
||||
{{bind-attr class="view.canRemoveLog::disabled"}}></a>
|
||||
</li>
|
||||
{{! the next if is a hack for refreshing displayRemoveLog when we change
|
||||
views, it sometimes doesn't work properly }}
|
||||
{{#if view.jobIdForLog}}
|
||||
{{#if view.displayRemoveLog}}
|
||||
<li class="icon remove-log" title="Remove Log">
|
||||
<a href="#" name="remove-log-popup" class="open-popup" {{action "removeLogPopup" target=view}}
|
||||
{{bind-attr class="view.canRemoveLog::disabled"}}></a>
|
||||
</li>
|
||||
{{/if}}
|
||||
{{/if}}
|
||||
{{#if view.displayCodeClimate}}
|
||||
<li class="icon code-climate" title="Test Coverage with Code Climate">
|
||||
|
|
|
@ -288,13 +288,14 @@ Travis.reopen
|
|||
).property('jobIdForLog', 'job.log.token', 'build.jobs.firstObject.log.token')
|
||||
|
||||
canRemoveLog: (->
|
||||
@get('displayRemoveLog') && @get('hasPermission')
|
||||
).property('displayRemoveLog', 'hasPermission')
|
||||
@get('displayRemoveLog')
|
||||
).property('displayRemoveLog')
|
||||
|
||||
displayRemoveLog: (->
|
||||
if job = Travis.Job.find(@get('jobIdForLog'))
|
||||
(@get('isJobTab') || (@get('isBuildTab') && @get('build.jobs.length') == 1)) && job.get('canRemoveLog')
|
||||
).property('isJobTab', 'isBuildTab', 'build.jobs.length', '_job.canRemoveLog', 'jobIdForLog')
|
||||
if job = @get('_job')
|
||||
(@get('isJobTab') || (@get('isBuildTab') && @get('build.jobs.length') == 1)) &&
|
||||
job.get('canRemoveLog') && @get('hasPermission')
|
||||
).property('isJobTab', 'isBuildTab', 'build.jobs.length', '_job.canRemoveLog', 'jobIdForLog', 'canRemoveLog', 'hasPermission')
|
||||
|
||||
canCancelBuild: (->
|
||||
@get('displayCancelBuild') && @get('hasPermission')
|
||||
|
|
Loading…
Reference in New Issue
Block a user