Skip to content

Commit

Permalink
add auth type in userprofile (#1500)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikkonie committed Oct 10, 2024
1 parent e809807 commit bc21994
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ Changelog for the **SODAR Core** Django app package. Loosely follows the
Unreleased
==========

Added
-----

- **Userprofile**
- Authentication type in user details (#1500)

Fixed
-----

Expand Down
1 change: 1 addition & 0 deletions docs/source/major_changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ v1.0.3 (WIP)
Release Highlights
==================

- Add auth type in user profile details card
- Fix requiring deprecated SODAR API settings in tests


Expand Down
2 changes: 2 additions & 0 deletions userprofile/templates/userprofile/detail.html
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,8 @@ <h4>
<dd class="col-md-10"><code>{{ request.user.sodar_uuid }}</code></dd>
<dt class="col-md-2">Date Joined</dt>
<dd class="col-md-10">{{ request.user.date_joined | date:'Y-m-d H:i' }}</dd>
<dt class="col-md-2">Authentication</dt>
<dd class="col-md-10">{{ request.user.get_auth_type }}</dd>
</dl>
</div>
</div>
Expand Down

0 comments on commit bc21994

Please sign in to comment.