aboutsummaryrefslogtreecommitdiff
blob: 76eb0a85afc7b5836f994ffa361a916f16c5490e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<div class="col-sm-9 col-md-10 col-sm-push-3 col-md-push-2">
    <ol class="breadcrumb">
        <li><a href="#/realms/{{realm.realm}}/users">{{:: 'users' | translate}}</a></li>
        <li>{{user.username}}</li>
    </ol>

    <kc-tabs-user></kc-tabs-user>

    <table class="table table-striped table-bordered">
        <thead>
        <tr>
            <th>{{:: 'client' | translate}}</th>
            <th>{{:: 'granted-client-scopes' | translate}}</th>
            <th>{{:: 'additional-grants' | translate}}</th>
            <th>{{:: 'consent-created-date' | translate}}</th>
            <th>{{:: 'consent-last-updated-date' | translate}}</th>
            <th>{{:: 'action' | translate}}</th>
        </tr>
        </thead>
        <tbody>
        <tr data-ng-repeat="consent in userConsents">
            <td>{{consent.clientId}}</td>
            <td>
                <span data-ng-repeat="clientScope in consent.grantedClientScopes">
                    <span ng-if="!$first">, </span>{{clientScope}}
                </span>
            </td>
            <td>
                <span data-ng-repeat="additionalGrant in consent.additionalGrants">
                    <span ng-if="!$first">, </span><a href="#/realms/{{realm.realm}}/users/{{user.id}}/offline-sessions/{{additionalGrant.client}}">{{additionalGrant.key}}</a>
                </span>
            </td>
            <td>{{consent.createdDate | date :'short'}}</td>
            <td>{{consent.lastUpdatedDate | date :'short'}}</td>
            <td class="kc-action-cell" ng-click="revokeConsent(consent.clientId)">{{:: 'revoke' | translate}}</td>
        </tr>
        </tbody>
    </table>
</div>

<kc-menu></kc-menu>