mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-21 19:01:37 +00:00
34 lines
690 B
PHP
34 lines
690 B
PHP
<?php
|
|
|
|
namespace App\Http\Livewire\ServerSshKeys;
|
|
|
|
use App\Models\Server;
|
|
use App\Models\SshKey;
|
|
use Illuminate\Contracts\View\View;
|
|
use Livewire\Component;
|
|
|
|
class AddExistingKey extends Component
|
|
{
|
|
public Server $server;
|
|
|
|
public string $key_id = '';
|
|
|
|
public function add(): void
|
|
{
|
|
$key = SshKey::query()->findOrFail($this->all()['key_id']);
|
|
|
|
$key->deployTo($this->server);
|
|
|
|
$this->emitTo(ServerKeysList::class, '$refresh');
|
|
|
|
$this->dispatchBrowserEvent('added', true);
|
|
}
|
|
|
|
public function render(): View
|
|
{
|
|
return view('livewire.server-ssh-keys.add-existing-key', [
|
|
'keys' => SshKey::all(),
|
|
]);
|
|
}
|
|
}
|