* feat(README): add InterviewPal sponsorship link and corresponding SVG icon * chore(versions): update coolify version to 4.0.0-beta.413 and nightly version to 4.0.0-beta.414 in configuration files * fix(terminal): enhance WebSocket client verification with authorized IPs in terminal server * chore(versions): update realtime version to 1.0.8 in versions.json * chore(versions): update realtime version to 1.0.8 in versions.json * chore(docker): update soketi image version to 1.0.8 in production configuration files * chore(versions): update coolify version to 4.0.0-beta.414 and nightly version to 4.0.0-beta.415 in configuration files * fix(ApplicationDeploymentJob): ensure source is an object before checking GitHub app properties * fix(ui): Disable livewire navigate feature (causing spam of setInterval()) * fix(ui): Remove required attribute from image input in service application view * fix(ui): Change application image validation to be nullable in service application view * fix(Server): Correct proxy path formatting for Traefik proxy type
35 lines
1.5 KiB
PHP
35 lines
1.5 KiB
PHP
<div>
|
|
<x-security.navbar />
|
|
|
|
<div class="flex gap-2">
|
|
<h2 class="pb-4">Private Keys</h2>
|
|
<x-modal-input buttonTitle="+ Add" title="New Private Key">
|
|
<livewire:security.private-key.create />
|
|
</x-modal-input>
|
|
<x-modal-confirmation title="Confirm unused SSH Key Deletion?" buttonTitle="Delete unused SSH Keys" isErrorButton
|
|
submitAction="cleanupUnusedKeys" :actions="['All unused SSH keys (marked with unused) are permanently deleted.']" :confirmWithText="false" :confirmWithPassword="false" />
|
|
</div>
|
|
<div class="grid gap-2 lg:grid-cols-2">
|
|
@forelse ($privateKeys as $key)
|
|
<a class="box group"
|
|
href="{{ route('security.private-key.show', ['private_key_uuid' => data_get($key, 'uuid')]) }}">
|
|
<div class="flex flex-col mx-6">
|
|
<div class="box-title">
|
|
{{ data_get($key, 'name') }}
|
|
</div>
|
|
<div class="box-description">
|
|
{{ $key->description }}
|
|
@if (!$key->isInUse())
|
|
<span
|
|
class="inline-flex items-center px-2 py-0.5 rounded text-xs font-medium bg-yellow-400 text-black">Unused</span>
|
|
@endif
|
|
</div>
|
|
|
|
</div>
|
|
</a>
|
|
@empty
|
|
<div>No private keys found.</div>
|
|
@endforelse
|
|
</div>
|
|
</div>
|