summaryrefslogtreecommitdiff
path: root/internal
diff options
context:
space:
mode:
authorLibravatar kim <89579420+NyaaaWhatsUpDoc@users.noreply.github.com>2023-12-18 16:40:29 +0000
committerLibravatar GitHub <noreply@github.com>2023-12-18 16:40:29 +0000
commit97a1fd9a29b989384d94684030d640fb5761b7d2 (patch)
tree02f84f6eb195e64c76e35998dbce78265d0b8175 /internal
parent[feature] request blocking by http headers (#2409) (diff)
downloadgotosocial-97a1fd9a29b989384d94684030d640fb5761b7d2.tar.xz
[bugfix] :innocent: (#2476)
Diffstat (limited to 'internal')
-rw-r--r--internal/api/client/admin/admin.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/api/client/admin/admin.go b/internal/api/client/admin/admin.go
index 6173218e0..f247d7ce9 100644
--- a/internal/api/client/admin/admin.go
+++ b/internal/api/client/admin/admin.go
@@ -38,7 +38,7 @@ const (
HeaderAllowsPath = BasePath + "/header_allows"
HeaderAllowsPathWithID = HeaderAllowsPath + "/:" + IDKey
HeaderBlocksPath = BasePath + "/header_blocks"
- HeaderBlocksPathWithID = HeaderAllowsPath + "/:" + IDKey
+ HeaderBlocksPathWithID = HeaderBlocksPath + "/:" + IDKey
AccountsPath = BasePath + "/accounts"
AccountsPathWithID = AccountsPath + "/:" + IDKey
AccountsActionPath = AccountsPathWithID + "/action"