⚝
One Hat Cyber Team
⚝
Your IP:
216.73.217.4
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
/
features
/
org
/
state
/
Edit File: actions.ts
import { getBackendSrv } from '@grafana/runtime'; import { updateConfigurationSubtitle } from 'app/core/actions'; import { ThunkResult } from 'app/types'; import { organizationLoaded, userOrganizationsLoaded } from './reducers'; type OrganizationDependencies = { getBackendSrv: typeof getBackendSrv }; export function loadOrganization( dependencies: OrganizationDependencies = { getBackendSrv: getBackendSrv } ): ThunkResult<void> { return async (dispatch) => { const organizationResponse = await dependencies.getBackendSrv().get('/api/org'); dispatch(organizationLoaded(organizationResponse)); return organizationResponse; }; } export function updateOrganization( dependencies: OrganizationDependencies = { getBackendSrv: getBackendSrv } ): ThunkResult<void> { return async (dispatch, getStore) => { const organization = getStore().organization.organization; await dependencies.getBackendSrv().put('/api/org', { name: organization.name }); dispatch(updateConfigurationSubtitle(organization.name)); dispatch(loadOrganization(dependencies)); }; } export function setUserOrganization( orgId: number, dependencies: OrganizationDependencies = { getBackendSrv: getBackendSrv } ): ThunkResult<void> { return async (dispatch) => { const organizationResponse = await dependencies.getBackendSrv().post('/api/user/using/' + orgId); dispatch(updateConfigurationSubtitle(organizationResponse.name)); }; } export function createOrganization( newOrg: { name: string }, dependencies: OrganizationDependencies = { getBackendSrv: getBackendSrv } ): ThunkResult<void> { return async (dispatch) => { const result = await dependencies.getBackendSrv().post('/api/orgs/', newOrg); dispatch(setUserOrganization(result.orgId)); }; } export function getUserOrganizations( dependencies: OrganizationDependencies = { getBackendSrv: getBackendSrv } ): ThunkResult<any> { return async (dispatch) => { const result = await dependencies.getBackendSrv().get('/api/user/orgs'); dispatch(userOrganizationsLoaded(result)); return result; }; }
Simpan