show indicator if two-step login is enabled

This commit is contained in:
Kyle Spearrin 2018-12-19 11:30:02 -05:00
parent 84bea20891
commit 7efd81191a
3 changed files with 7 additions and 1 deletions

2
jslib

@ -1 +1 @@
Subproject commit aa1784932945bfd1115f366cf5dafc6b481c19a3
Subproject commit cddeeefdbb14d5f70020fb705885eb05a0bb4339

View File

@ -45,6 +45,9 @@
<span class="badge badge-warning" *ngIf="u.status === organizationUserStatusType.Accepted">{{'accepted' | i18n}}</span>
<small class="text-muted d-block" *ngIf="u.name">{{u.name}}</small>
</td>
<td>
<i class="fa fa-lock" *ngIf="u.twoFactorEnabled" title="{{'userUsingTwoStep' | i18n}}"></i>
</td>
<td>
<span *ngIf="u.type === organizationUserType.Owner">{{'owner' | i18n}}</span>
<span *ngIf="u.type === organizationUserType.Admin">{{'admin' | i18n}}</span>

View File

@ -2036,6 +2036,9 @@
}
}
},
"userUsingTwoStep": {
"message": "This user is using two-step login to protect their account."
},
"userAccessAllItems": {
"message": "This user can access and modify all items."
},