⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.72
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
/
View File Name :
accessControl.ts
/** * UserPermission is a map storing permissions in a form of * { * action: true; * } */ export type UserPermission = Record
; // Permission actions export enum AccessControlAction { UsersRead = 'users:read', UsersWrite = 'users:write', UsersAuthTokenList = 'users.authtoken:read', UsersAuthTokenUpdate = 'users.authtoken:write', UsersPasswordUpdate = 'users.password:write', UsersDelete = 'users:delete', UsersCreate = 'users:create', UsersEnable = 'users:enable', UsersDisable = 'users:disable', UsersPermissionsUpdate = 'users.permissions:write', UsersLogout = 'users:logout', UsersQuotasList = 'users.quotas:read', UsersQuotasUpdate = 'users.quotas:write', ServiceAccountsRead = 'serviceaccounts:read', ServiceAccountsCreate = 'serviceaccounts:create', ServiceAccountsWrite = 'serviceaccounts:write', ServiceAccountsDelete = 'serviceaccounts:delete', ServiceAccountsPermissionsRead = 'serviceaccounts.permissions:read', ServiceAccountsPermissionsWrite = 'serviceaccounts.permissions:write', OrgsRead = 'orgs:read', OrgsPreferencesRead = 'orgs.preferences:read', OrgsWrite = 'orgs:write', OrgsPreferencesWrite = 'orgs.preferences:write', OrgsCreate = 'orgs:create', OrgsDelete = 'orgs:delete', OrgUsersRead = 'org.users:read', OrgUsersAdd = 'org.users:add', OrgUsersRemove = 'org.users:remove', OrgUsersWrite = 'org.users:write', LDAPUsersRead = 'ldap.user:read', LDAPUsersSync = 'ldap.user:sync', LDAPStatusRead = 'ldap.status:read', DataSourcesExplore = 'datasources:explore', DataSourcesRead = 'datasources:read', DataSourcesCreate = 'datasources:create', DataSourcesWrite = 'datasources:write', DataSourcesDelete = 'datasources:delete', DataSourcesPermissionsRead = 'datasources.permissions:read', DataSourcesCachingRead = 'datasources.caching:read', DataSourcesInsightsRead = 'datasources.insights:read', ActionServerStatsRead = 'server.stats:read', ActionTeamsCreate = 'teams:create', ActionTeamsDelete = 'teams:delete', ActionTeamsRead = 'teams:read', ActionTeamsWrite = 'teams:write', ActionTeamsPermissionsRead = 'teams.permissions:read', ActionTeamsPermissionsWrite = 'teams.permissions:write', ActionRolesList = 'roles:read', ActionTeamsRolesList = 'teams.roles:read', ActionTeamsRolesAdd = 'teams.roles:add', ActionTeamsRolesRemove = 'teams.roles:remove', ActionUserRolesList = 'users.roles:read', ActionUserRolesAdd = 'users.roles:add', ActionUserRolesRemove = 'users.roles:remove', DashboardsRead = 'dashboards:read', DashboardsWrite = 'dashboards:write', DashboardsDelete = 'dashboards:delete', DashboardsCreate = 'dashboards:create', DashboardsPermissionsRead = 'dashboards.permissions:read', DashboardsPermissionsWrite = 'dashboards.permissions:write', DashboardsPublicWrite = 'dashboards.public:write', FoldersRead = 'folders:read', FoldersWrite = 'folders:write', FoldersDelete = 'folders:delete', FoldersCreate = 'folders:create', FoldersPermissionsRead = 'folders.permissions:read', FoldersPermissionsWrite = 'folders.permissions:write', // Support bundle actions ActionSupportBundlesCreate = 'support.bundles:create', ActionSupportBundlesRead = 'support.bundles:read', ActionSupportBundlesDelete = 'support.bundles:delete', // Alerting rules AlertingRuleCreate = 'alert.rules:create', AlertingRuleRead = 'alert.rules:read', AlertingRuleUpdate = 'alert.rules:write', AlertingRuleDelete = 'alert.rules:delete', // Alerting instances (+silences) AlertingInstanceCreate = 'alert.instances:create', AlertingInstanceUpdate = 'alert.instances:write', AlertingInstanceRead = 'alert.instances:read', // Alerting Notification policies AlertingNotificationsRead = 'alert.notifications:read', AlertingNotificationsWrite = 'alert.notifications:write', // External alerting rule actions. AlertingRuleExternalWrite = 'alert.rules.external:write', AlertingRuleExternalRead = 'alert.rules.external:read', // External alerting instances actions. AlertingInstancesExternalWrite = 'alert.instances.external:write', AlertingInstancesExternalRead = 'alert.instances.external:read', // External alerting notifications actions. AlertingNotificationsExternalWrite = 'alert.notifications.external:write', AlertingNotificationsExternalRead = 'alert.notifications.external:read', // Alerting provisioning actions AlertingProvisioningReadSecrets = 'alert.provisioning.secrets:read', AlertingProvisioningRead = 'alert.provisioning:read', AlertingProvisioningWrite = 'alert.provisioning:write', ActionAPIKeysRead = 'apikeys:read', ActionAPIKeysCreate = 'apikeys:create', ActionAPIKeysDelete = 'apikeys:delete', PluginsInstall = 'plugins:install', PluginsWrite = 'plugins:write', // Settings SettingsRead = 'settings:read', SettingsWrite = 'settings:write', } export interface Role { uid: string; name: string; displayName: string; description: string; group: string; global: boolean; delegatable?: boolean; version: number; created: string; updated: string; }