We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d215421 commit 39362f7Copy full SHA for 39362f7
CHANGELOG.md
@@ -31,6 +31,7 @@
31
- JSONによるClient Information Discoveryを行うには、レスポンスの`Content-Type`ヘッダーが`application/json`である必要があります
32
- 従来の実装(12 February 2022版・HTML Microformat形式)も引き続きサポートされます
33
- Enhance: メモリ使用量を削減
34
+- Fix: `/admin/get-user-ips` エンドポイントのアクセス権限を管理者のみに修正
35
36
## 2025.12.2
37
packages/backend/src/server/api/endpoints/admin/get-user-ips.ts
@@ -13,7 +13,7 @@ export const meta = {
13
tags: ['admin'],
14
15
requireCredential: true,
16
- requireModerator: true,
+ requireAdmin: true,
17
kind: 'read:admin:user-ips',
18
res: {
19
type: 'array',
0 commit comments