| 12345678910111213141516171819202122232425262728 |
- import http from '@/utils/request'
- export function getGovernanceAuditSecurityChecks () {
- return http.get('/system/governance-audit/security-checks')
- }
- export function getGovernanceAuditCoverage (params) {
- return http.get('/system/governance-audit/coverage', params)
- }
- export function getGovernanceAuditEvents (params) {
- return http.get('/system/governance-audit/events', params)
- }
- export function getGovernanceAuditSeals (limit = 50) {
- return http.get('/system/governance-audit/seals', { limit })
- }
- export function createGovernanceAuditSeal (payload) {
- return http.post('/system/governance-audit/seals', payload)
- }
- export function verifyGovernanceAuditSeal (sealUid) {
- return http.post(
- `/system/governance-audit/seals/${encodeURIComponent(sealUid)}/verify`,
- {}
- )
- }
|