mirror of
https://github.com/usememos/memos.git
synced 2025-04-03 04:11:20 +02:00
chore: update acl config
This commit is contained in:
parent
34af969785
commit
17e905085f
@ -7,6 +7,9 @@ var authenticationAllowlistMethods = map[string]bool{
|
|||||||
"/memos.api.v2.AuthService/GetAuthStatus": true,
|
"/memos.api.v2.AuthService/GetAuthStatus": true,
|
||||||
"/memos.api.v2.UserService/GetUser": true,
|
"/memos.api.v2.UserService/GetUser": true,
|
||||||
"/memos.api.v2.MemoService/ListMemos": true,
|
"/memos.api.v2.MemoService/ListMemos": true,
|
||||||
|
"/memos.api.v2.MemoService/ListMemoResources": true,
|
||||||
|
"/memos.api.v2.MemoService/ListMemoRelations": true,
|
||||||
|
"/memos.api.v2.MemoService/ListMemoComments": true,
|
||||||
"/memos.api.v2.MarkdownService/ParseMarkdown": true,
|
"/memos.api.v2.MarkdownService/ParseMarkdown": true,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -48,14 +48,6 @@ export function getUserList() {
|
|||||||
return axios.get<User[]>("/api/v1/user");
|
return axios.get<User[]>("/api/v1/user");
|
||||||
}
|
}
|
||||||
|
|
||||||
export function getUserById(id: number) {
|
|
||||||
return axios.get<User>(`/api/v1/user/${id}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
export function upsertUserSetting(upsert: UserSettingUpsert) {
|
|
||||||
return axios.post<UserSetting>(`/api/v1/user/setting`, upsert);
|
|
||||||
}
|
|
||||||
|
|
||||||
export function getMemoStats(username: string) {
|
export function getMemoStats(username: string) {
|
||||||
return axios.get<number[]>(`/api/v1/memo/stats?creatorUsername=${username}`);
|
return axios.get<number[]>(`/api/v1/memo/stats?creatorUsername=${username}`);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user