Skip to content

Commit

Permalink
Add key change fields to view in Bitwarden Portal (#4465)
Browse files Browse the repository at this point in the history
  • Loading branch information
trmartin4 committed Jul 5, 2024
1 parent 9c8a9f4 commit 25cf611
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/Admin/Views/Users/_ViewInformation.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,17 @@

<dt class="col-sm-4 col-lg-3">Modified</dt>
<dd class="col-sm-8 col-lg-9">@Model.User.RevisionDate.ToString()</dd>

<dt class="col-sm-4 col-lg-3">Last Email Address Change</dt>
<dd class="col-sm-8 col-lg-9">@(Model.User.LastEmailChangeDate.ToString() ?? "-")</dd>

<dt class="col-sm-4 col-lg-3">Last KDF Change</dt>
<dd class="col-sm-8 col-lg-9">@(Model.User.LastKdfChangeDate.ToString() ?? "-")</dd>

<dt class="col-sm-4 col-lg-3">Last Key Rotation</dt>
<dd class="col-sm-8 col-lg-9">@(Model.User.LastKeyRotationDate.ToString() ?? "-")</dd>

<dt class="col-sm-4 col-lg-3">Last Password Change</dt>
<dd class="col-sm-8 col-lg-9">@(Model.User.LastPasswordChangeDate.ToString() ?? "-")</dd>

</dl>

0 comments on commit 25cf611

Please sign in to comment.