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
e16546f8
Commit
e16546f8
authored
May 07, 2024
by
steven
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
chore: handle legacy workspace setting
parent
a73f979f
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
memo_resource_service.go
server/router/api/v1/memo_resource_service.go
+1
-1
workspace_setting.go
store/workspace_setting.go
+5
-1
No files found.
server/router/api/v1/memo_resource_service.go
View file @
e16546f8
...
@@ -73,7 +73,7 @@ func (s *APIV1Service) ListMemoResources(ctx context.Context, request *v1pb.List
...
@@ -73,7 +73,7 @@ func (s *APIV1Service) ListMemoResources(ctx context.Context, request *v1pb.List
MemoID
:
&
id
,
MemoID
:
&
id
,
})
})
if
err
!=
nil
{
if
err
!=
nil
{
return
nil
,
status
.
Errorf
(
codes
.
Internal
,
"failed to list resources
"
)
return
nil
,
status
.
Errorf
(
codes
.
Internal
,
"failed to list resources
: %v"
,
err
)
}
}
response
:=
&
v1pb
.
ListMemoResourcesResponse
{
response
:=
&
v1pb
.
ListMemoResourcesResponse
{
...
...
store/workspace_setting.go
View file @
e16546f8
...
@@ -69,6 +69,9 @@ func (s *Store) ListWorkspaceSettings(ctx context.Context, find *FindWorkspaceSe
...
@@ -69,6 +69,9 @@ func (s *Store) ListWorkspaceSettings(ctx context.Context, find *FindWorkspaceSe
if
err
!=
nil
{
if
err
!=
nil
{
return
nil
,
errors
.
Wrap
(
err
,
"Failed to convert workspace setting"
)
return
nil
,
errors
.
Wrap
(
err
,
"Failed to convert workspace setting"
)
}
}
if
workspaceSetting
==
nil
{
continue
}
s
.
workspaceSettingCache
.
Store
(
workspaceSetting
.
Key
.
String
(),
workspaceSetting
)
s
.
workspaceSettingCache
.
Store
(
workspaceSetting
.
Key
.
String
(),
workspaceSetting
)
workspaceSettings
=
append
(
workspaceSettings
,
workspaceSetting
)
workspaceSettings
=
append
(
workspaceSettings
,
workspaceSetting
)
}
}
...
@@ -206,7 +209,8 @@ func convertWorkspaceSettingFromRaw(workspaceSettingRaw *WorkspaceSetting) (*sto
...
@@ -206,7 +209,8 @@ func convertWorkspaceSettingFromRaw(workspaceSettingRaw *WorkspaceSetting) (*sto
}
}
workspaceSetting
.
Value
=
&
storepb
.
WorkspaceSetting_MemoRelatedSetting
{
MemoRelatedSetting
:
memoRelatedSetting
}
workspaceSetting
.
Value
=
&
storepb
.
WorkspaceSetting_MemoRelatedSetting
{
MemoRelatedSetting
:
memoRelatedSetting
}
default
:
default
:
return
nil
,
errors
.
Errorf
(
"unsupported workspace setting key: %v"
,
workspaceSettingRaw
.
Name
)
// Skip unsupported workspace setting key.
return
nil
,
nil
}
}
return
workspaceSetting
,
nil
return
workspaceSetting
,
nil
}
}
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