Skip to content
Snippets Groups Projects

Smarter access logic for reports' experiments

Merged Jaden DIEFENBAUGH requested to merge 525-report-links-to-experiments into master
1 file
+ 4
1
Compare changes
  • Side-by-side
  • Inline
@@ -138,7 +138,10 @@ angular.module('reportApp').directive("groupPanelExperiments", ['GroupsService',
</td>
<td ng-if='!isViewmode()'><input ng-model='group.aliases[expName]' ng-model-options="{ debounce: 500 }"></input></td>
<td ng-if='isViewmode()'><span>{{ group.aliases[expName] }}</span></td>
<td><a ng-if='accessMap[expName]' href='{{ getExpUrl(expName) }}'>{{ getExpName(expName) }}</a></td>
<td>
<a ng-if='accessMap[expName]' href='{{ getExpUrl(expName) }}'>{{ getExpName(expName) }}</a>
<i ng-if='!accessMap[expName]'><small>experiment not accessible for current user</small></i>
</td>
<td>
<span ng-repeat='db in getExpDatabases(expName)'>
<a href='{{ getDatabaseUrl(db.split("@")[0]) }}'>{{ db }}</a>
Loading