mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-02 22:46:16 +00:00
#591 - cron jobs
This commit is contained in:
11
resources/js/types/cronjob.d.ts
vendored
Normal file
11
resources/js/types/cronjob.d.ts
vendored
Normal 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;
|
||||
}
|
1
resources/js/types/server.d.ts
vendored
1
resources/js/types/server.d.ts
vendored
@ -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;
|
||||
|
Reference in New Issue
Block a user