Skip to content

Commit

Permalink
Show whether or not the user was imported via LDAP in the view page
Browse files Browse the repository at this point in the history
  • Loading branch information
snipe committed Jul 10, 2020
1 parent fd10b75 commit 12c92e3
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions resources/views/users/view.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,13 @@
<td class="text-nowrap">{{ trans('general.login_enabled') }}</td>
<td>{{ ($user->activated=='1') ? trans('general.yes') : trans('general.no') }}</td>
</tr>
@if ($user->ldap_import!='1')
<tr>
<td class="text-nowrap">LDAP</td>
<td>{{ trans('general.yes') }}</td>
</tr>
@endif


@if ($user->activated=='1')
<tr>
Expand Down

0 comments on commit 12c92e3

Please sign in to comment.