⚝
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: ldap.ts
interface LdapMapping { cfgAttrValue: string; ldapValue: string; } export interface LdapError { title: string; body: string; } export interface SyncInfo { enabled: boolean; schedule: string; nextSync: string; } export interface LdapUserSyncInfo { nextSync?: string; prevSync?: string; status?: string; } export interface FailedUser { Login: string; Error: string; } export interface LdapRole { orgId: number; orgName: string; orgRole: string; groupDN: string; } export interface LdapTeam { orgName: string; teamName: string; groupDN: string; } export interface LdapUserInfo { name: LdapMapping; surname: LdapMapping; email: LdapMapping; login: LdapMapping; } export interface LdapPermissions { isGrafanaAdmin: boolean; isDisabled: boolean; } export interface LdapUser { info: LdapUserInfo; permissions: LdapPermissions; roles: LdapRole[]; teams: LdapTeam[]; } export interface LdapServerInfo { available: boolean; host: string; port: number; error: string; } export type LdapConnectionInfo = LdapServerInfo[]; export interface LdapState { connectionInfo: LdapConnectionInfo; user?: LdapUser; syncInfo?: SyncInfo; connectionError?: LdapError; userError?: LdapError; ldapError?: LdapError; }
Simpan