mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-07 08:52:35 +00:00
refactoring (#116)
- refactoring architecture - fix incomplete ssh logs - code editor for scripts in the app - remove Jobs and SSHCommands
This commit is contained in:
@ -36,8 +36,11 @@ class="mt-1 w-full"
|
||||
{{ __("Select") }}
|
||||
</option>
|
||||
<option value="root" @if(old('user') == 'root') selected @endif>root</option>
|
||||
<option value="{{ $server->ssh_user }}" @if(old('user') == $server->ssh_user) selected @endif>
|
||||
{{ $server->ssh_user }}
|
||||
<option
|
||||
value="{{ $server->getSshUser() }}"
|
||||
@if(old('user') == $server->getSshUser()) selected @endif
|
||||
>
|
||||
{{ $server->getSshUser() }}
|
||||
</option>
|
||||
</x-select-input>
|
||||
@error("user")
|
||||
|
@ -26,10 +26,6 @@
|
||||
<x-status status="danger">{{ $status }}</x-status>
|
||||
@endif
|
||||
|
||||
@if ($status == \App\Enums\QueueStatus::FAILED)
|
||||
<x-status status="danger">{{ $status }}</x-status>
|
||||
@endif
|
||||
|
||||
@if ($status == \App\Enums\QueueStatus::DELETING)
|
||||
<x-status status="danger">{{ $status }}</x-status>
|
||||
@endif
|
||||
|
Reference in New Issue
Block a user