Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
canifa_note
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Vũ Hoàng Anh
canifa_note
Commits
76c93635
Commit
76c93635
authored
Mar 20, 2024
by
Steven
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
chore: fix resource link
parent
6db427e3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
7 deletions
+1
-7
acl_config.go
server/route/api/v2/acl_config.go
+0
-5
Resources.tsx
web/src/pages/Resources.tsx
+1
-2
No files found.
server/route/api/v2/acl_config.go
View file @
76c93635
package
v2
import
"strings"
var
authenticationAllowlistMethods
=
map
[
string
]
bool
{
"/memos.api.v2.WorkspaceService/GetWorkspaceProfile"
:
true
,
"/memos.api.v2.WorkspaceSettingService/GetWorkspaceSetting"
:
true
,
...
...
@@ -23,9 +21,6 @@ var authenticationAllowlistMethods = map[string]bool{
// isUnauthorizeAllowedMethod returns whether the method is exempted from authentication.
func
isUnauthorizeAllowedMethod
(
fullMethodName
string
)
bool
{
if
strings
.
HasPrefix
(
fullMethodName
,
"/grpc.reflection"
)
{
return
true
}
return
authenticationAllowlistMethods
[
fullMethodName
]
}
...
...
web/src/pages/Resources.tsx
View file @
76c93635
...
...
@@ -132,8 +132,7 @@ const Resources = () => {
{
relatedMemo
&&
(
<
Link
className=
"shrink-0 text-xs ml-1 text-gray-400 hover:underline hover:text-blue-600"
to=
{
`/m/${relatedMemo.name}`
}
target=
"_blank"
to=
{
`/m/${relatedMemo.resourceId}`
}
>
#
{
extractMemoIdFromName
(
relatedMemo
.
name
)
}
</
Link
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment