mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-02 22:46:16 +00:00
#591 - firewall
This commit is contained in:
15
resources/js/types/firewall.d.ts
vendored
Normal file
15
resources/js/types/firewall.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
export interface FirewallRule {
|
||||
id: number;
|
||||
name: string;
|
||||
server_id: number;
|
||||
type: string;
|
||||
protocol: string;
|
||||
port: number;
|
||||
source: string;
|
||||
mask: number;
|
||||
note: string;
|
||||
status: string;
|
||||
status_color: 'gray' | 'success' | 'info' | 'warning' | 'danger';
|
||||
created_at: string;
|
||||
updated_at: string;
|
||||
}
|
1
resources/js/types/index.d.ts
vendored
1
resources/js/types/index.d.ts
vendored
@ -28,6 +28,7 @@ export interface NavItem {
|
||||
onlyActivePath?: string;
|
||||
icon?: LucideIcon | null;
|
||||
isActive?: boolean;
|
||||
isDisabled?: boolean;
|
||||
children?: NavItem[];
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user