GET /bff/gateway/admin/env-vars
返回 .env/.env.local 中加载的所有环境变量,敏感变量值自动脱敏(仅限 super_admin 访问)
网关 - 运维 `bearerAuth` application/json
Responses
| Status | Description | Schema |
| 200 | 环境变量列表 | dto.EnvVarsResult |
| 400 | 请求参数无效 | object |
| 401 | 未认证 | object |
| 403 | 权限不足 | object |
| 500 | 服务器内部错误 | object |
Referenced Schemas
dto.EnvVarEntry
| Field | Type | Required | Example | Constraints | Description |
category |
string |
No |
|
|
|
key |
string |
No |
|
|
|
masked |
boolean |
No |
|
|
|
source |
string |
No |
|
|
|
value |
string |
No |
|
|
|
dto.EnvVarsResult
| Field | Type | Required | Example | Constraints | Description |
total |
integer |
No |
|
|
|
variables |
array of
See dto.EnvVarEntry |
No |
|
|
|