#591 - cron jobs

This commit is contained in:
Saeed Vaziry
2025-05-28 00:19:25 +02:00
parent 6032bd1098
commit 61506ff70e
22 changed files with 938 additions and 87 deletions

11
resources/js/types/cronjob.d.ts vendored Normal file
View File

@ -0,0 +1,11 @@
export interface CronJob {
id: number;
server_id: number;
command: string;
user: string;
frequency: string;
status: string;
status_color: 'gray' | 'success' | 'info' | 'warning' | 'danger';
created_at: string;
updated_at: string;
}

View File

@ -4,6 +4,7 @@ export interface Server {
user_id: number;
name: string;
ssh_user: string;
ssh_users: string[];
ip: string;
local_ip?: string;
port: number;