Skip to content

Commit 25cf611

Browse files
authored
Add key change fields to view in Bitwarden Portal (bitwarden#4465)
1 parent 9c8a9f4 commit 25cf611

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

Diff for: src/Admin/Views/Users/_ViewInformation.cshtml

+13
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,17 @@
2727

2828
<dt class="col-sm-4 col-lg-3">Modified</dt>
2929
<dd class="col-sm-8 col-lg-9">@Model.User.RevisionDate.ToString()</dd>
30+
31+
<dt class="col-sm-4 col-lg-3">Last Email Address Change</dt>
32+
<dd class="col-sm-8 col-lg-9">@(Model.User.LastEmailChangeDate.ToString() ?? "-")</dd>
33+
34+
<dt class="col-sm-4 col-lg-3">Last KDF Change</dt>
35+
<dd class="col-sm-8 col-lg-9">@(Model.User.LastKdfChangeDate.ToString() ?? "-")</dd>
36+
37+
<dt class="col-sm-4 col-lg-3">Last Key Rotation</dt>
38+
<dd class="col-sm-8 col-lg-9">@(Model.User.LastKeyRotationDate.ToString() ?? "-")</dd>
39+
40+
<dt class="col-sm-4 col-lg-3">Last Password Change</dt>
41+
<dd class="col-sm-8 col-lg-9">@(Model.User.LastPasswordChangeDate.ToString() ?? "-")</dd>
42+
3043
</dl>

0 commit comments

Comments
 (0)