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
df52bf5e
Commit
df52bf5e
authored
Jun 18, 2025
by
Steven
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: tag count
parent
35df62a9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
14 deletions
+20
-14
user_service_stats.go
server/router/api/v1/user_service_stats.go
+20
-14
No files found.
server/router/api/v1/user_service_stats.go
View file @
df52bf5e
...
@@ -125,23 +125,29 @@ func (s *APIV1Service) GetUserStats(ctx context.Context, request *v1pb.GetUserSt
...
@@ -125,23 +125,29 @@ func (s *APIV1Service) GetUserStats(ctx context.Context, request *v1pb.GetUserSt
displayTs
=
memo
.
UpdatedTs
displayTs
=
memo
.
UpdatedTs
}
}
displayTimestamps
=
append
(
displayTimestamps
,
timestamppb
.
New
(
time
.
Unix
(
displayTs
,
0
)))
displayTimestamps
=
append
(
displayTimestamps
,
timestamppb
.
New
(
time
.
Unix
(
displayTs
,
0
)))
// Count different memo types based on content.
// Count different memo types based on content
if
memo
.
Payload
!=
nil
{
if
memo
.
Payload
!=
nil
&&
memo
.
Payload
.
Property
!=
nil
{
for
_
,
tag
:=
range
memo
.
Payload
.
Tags
{
if
memo
.
Payload
.
Property
.
HasLink
{
if
tagCount
[
tag
]
==
0
{
linkCount
++
tagCount
[
tag
]
=
1
}
}
if
memo
.
Payload
.
Property
.
HasCode
{
tagCount
[
tag
]
++
codeCount
++
}
}
if
memo
.
Payload
.
Property
.
HasTaskList
{
if
memo
.
Payload
.
Property
!=
nil
{
todoCount
++
if
memo
.
Payload
.
Property
.
HasLink
{
}
linkCount
++
if
memo
.
Payload
.
Property
.
HasIncompleteTasks
{
}
undoCount
++
if
memo
.
Payload
.
Property
.
HasCode
{
codeCount
++
}
if
memo
.
Payload
.
Property
.
HasTaskList
{
todoCount
++
}
if
memo
.
Payload
.
Property
.
HasIncompleteTasks
{
undoCount
++
}
}
}
}
}
if
memo
.
Pinned
{
if
memo
.
Pinned
{
pinnedMemos
=
append
(
pinnedMemos
,
fmt
.
Sprintf
(
"users/%d/memos/%d"
,
userID
,
memo
.
ID
))
pinnedMemos
=
append
(
pinnedMemos
,
fmt
.
Sprintf
(
"users/%d/memos/%d"
,
userID
,
memo
.
ID
))
}
}
...
...
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