From eaf9113c924f602db83c31221bf615c3453a582c Mon Sep 17 00:00:00 2001 From: Wen Sun Date: Sun, 4 Feb 2024 10:48:13 +0900 Subject: [PATCH] fix: public shortcuts not showing up in public collections (#63) --- api/v2/acl_config.go | 1 + 1 file changed, 1 insertion(+) diff --git a/api/v2/acl_config.go b/api/v2/acl_config.go index 8e61fdc..1b4a2bd 100644 --- a/api/v2/acl_config.go +++ b/api/v2/acl_config.go @@ -10,6 +10,7 @@ var allowedMethodsWhenUnauthorized = map[string]bool{ "/slash.api.v2.AuthService/SignOut": true, "/memos.api.v2.AuthService/GetAuthStatus": true, "/slash.api.v2.ShortcutService/GetShortcutByName": true, + "/slash.api.v2.ShortcutService/GetShortcut": true, "/slash.api.v2.CollectionService/GetCollectionByName": true, }