mirror of
https://github.com/usememos/memos.git
synced 2025-10-06 12:26:29 +08:00
fix: add markdown service to acl
This commit is contained in:
parent
db0eff4743
commit
770607f93f
1 changed files with 5 additions and 4 deletions
|
@ -3,10 +3,11 @@ package v2
|
|||
import "strings"
|
||||
|
||||
var authenticationAllowlistMethods = map[string]bool{
|
||||
"/memos.api.v2.SystemService/GetSystemInfo": true,
|
||||
"/memos.api.v2.AuthService/GetAuthStatus": true,
|
||||
"/memos.api.v2.UserService/GetUser": true,
|
||||
"/memos.api.v2.MemoService/ListMemos": true,
|
||||
"/memos.api.v2.SystemService/GetSystemInfo": true,
|
||||
"/memos.api.v2.AuthService/GetAuthStatus": true,
|
||||
"/memos.api.v2.UserService/GetUser": true,
|
||||
"/memos.api.v2.MemoService/ListMemos": true,
|
||||
"/memos.api.v2.MarkdownService/ParseMarkdown": true,
|
||||
}
|
||||
|
||||
// isUnauthorizeAllowedMethod returns whether the method is exempted from authentication.
|
||||
|
|
Loading…
Add table
Reference in a new issue