Commit 3b9fbd60 by Torkel Ödegaard

ux: fix for showing pending invitations tab, fixes #9094

parent ad14ccf4
...@@ -92,20 +92,25 @@ export class OrgUsersCtrl { ...@@ -92,20 +92,25 @@ export class OrgUsersCtrl {
evt.stopPropagation(); evt.stopPropagation();
} }
openAddUsersView() { getInviteUrl(invite) {
var modalScope = this.$scope.$new(); return invite.url;
modalScope.invitesSent = this.get.bind(this); }
var src = config.disableLoginForm openAddUsersView() {
? 'public/app/features/org/partials/add_user.html' var modalScope = this.$scope.$new();
: 'public/app/features/org/partials/invite.html'; modalScope.invitesSent = this.get.bind(this);
this.$scope.appEvent('show-modal', { var src = config.disableLoginForm
src: src, ? 'public/app/features/org/partials/add_user.html'
modalClass: 'invite-modal', : 'public/app/features/org/partials/invite.html';
scope: modalScope
}); this.$scope.appEvent('show-modal', {
} src: src,
modalClass: 'invite-modal',
scope: modalScope
});
}
} }
coreModule.controller('OrgUsersCtrl', OrgUsersCtrl); coreModule.controller('OrgUsersCtrl', OrgUsersCtrl);
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
Users ({{ctrl.users.length}}) Users ({{ctrl.users.length}})
</a> </a>
</li> </li>
<li class="gf-tabs-item" ng-show="ctrl.showInviteUI"> <li class="gf-tabs-item" ng-show="ctrl.pendingInvites.length">
<a class="gf-tabs-link" ng-click="ctrl.editor.index = 1" ng-class="{active: ctrl.editor.index === 1}"> <a class="gf-tabs-link" ng-click="ctrl.editor.index = 1" ng-class="{active: ctrl.editor.index === 1}">
Pending Invitations ({{ctrl.pendingInvites.length}}) Pending Invitations ({{ctrl.pendingInvites.length}})
</a> </a>
...@@ -66,7 +66,7 @@ ...@@ -66,7 +66,7 @@
</table> </table>
</div> </div>
<div ng-if="ctrl.editor.index === 1 && ctrl.showInviteUI"> <div ng-if="ctrl.editor.index === 1">
<table class="filter-table form-inline"> <table class="filter-table form-inline">
<thead> <thead>
<tr> <tr>
...@@ -80,7 +80,7 @@ ...@@ -80,7 +80,7 @@
<td>{{invite.email}}</td> <td>{{invite.email}}</td>
<td>{{invite.name}}</td> <td>{{invite.name}}</td>
<td class="text-right"> <td class="text-right">
<button class="btn btn-inverse btn-mini " data-clipboard-text="{{invite.url}}" clipboard-button ng-click="ctrl.copyInviteToClipboard($event)"> <button class="btn btn-inverse btn-mini" clipboard-button="ctrl.getInviteUrl(invite)" ng-click="ctrl.copyInviteToClipboard($event)">
<i class="fa fa-clipboard"></i> Copy Invite <i class="fa fa-clipboard"></i> Copy Invite
</button> </button>
&nbsp; &nbsp;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment