mirror of
https://github.com/pterodactyl/panel.git
synced 2024-11-22 09:02:28 +01:00
Add star next to names of root admin accounts
This commit is contained in:
parent
975597b4d0
commit
df7a857929
@ -15,6 +15,9 @@ This project follows [Semantic Versioning](http://semver.org) guidelines.
|
||||
### Changed
|
||||
* Revoking the administrative status for an admin will revoke all authentication tokens currently assigned to their account.
|
||||
|
||||
### Added
|
||||
* Added star indicators to user listing in Admin CP to indicate users who are set as a root admin.
|
||||
|
||||
## v0.7.0-beta.2 (Derelict Dermodactylus)
|
||||
### Fixed
|
||||
* `[beta.1]` — Fixes a CORS header issue due to a wrong API endpoint being provided in the administrative node listing.
|
||||
|
@ -53,7 +53,7 @@
|
||||
@foreach ($users as $user)
|
||||
<tr class="align-middle">
|
||||
<td><code>{{ $user->id }}</code></td>
|
||||
<td><a href="{{ route('admin.users.view', $user->id) }}">{{ $user->email }}</a></td>
|
||||
<td><a href="{{ route('admin.users.view', $user->id) }}">{{ $user->email }}</a> @if($user->root_admin)<i class="fa fa-star text-yellow"></i>@endif</td>
|
||||
<td>{{ $user->name_last }}, {{ $user->name_first }}</td>
|
||||
<td>{{ $user->username }}</td>
|
||||
<td class="text-center">
|
||||
|
Loading…
Reference in New Issue
Block a user