feat: enhance Druid integration and improve user management features

This commit is contained in:
2026-07-16 09:59:27 +08:00
parent 2e88885a27
commit f9f5ceac9d
10 changed files with 253 additions and 72 deletions

View File

@@ -0,0 +1,12 @@
import { request } from '@umijs/max';
export interface DruidSsoResponse {
code: number;
msg?: string;
}
export async function establishDruidSession() {
return request<DruidSsoResponse>('/api/monitor/druid/sso', {
method: 'GET',
});
}