File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
packages/velog-cron/src/services/StatsService Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -36,10 +36,10 @@ export class StatsService implements Service {
36
36
37
37
await this . discord . sendMessage (
38
38
'stats' ,
39
- `[Daily]\n기간: ${ format (
39
+ `[Daily]\n ${ format (
40
40
start ,
41
41
'yyyy-MM-dd' ,
42
- ) } \n${ usersCount } 명의 사용자가 가입했습니다.\n${ postCount } 개의 공개 포스트가 작성되었습니다.`,
42
+ ) } 동안 \n${ usersCount } 명의 사용자가 가입했습니다.\n${ postCount } 개의 공개 포스트가 작성되었습니다.`,
43
43
)
44
44
}
45
45
public async weekly ( ) {
@@ -53,10 +53,10 @@ export class StatsService implements Service {
53
53
const timeFormat = 'yyyy-MM-dd HH:mm:ss'
54
54
await this . discord . sendMessage (
55
55
'stats' ,
56
- `[Daily]\n기간: ${ format ( start , timeFormat ) } -${ format (
56
+ `[Weekly]\n ${ format ( start , timeFormat ) } -${ format (
57
57
end ,
58
- 'HH:mm:ss' ,
59
- ) } \n${ usersCount } 명의 사용자가 가입했습니다.\n${ postCount } 개의 공개 포스트가 작성되었습니다.`,
58
+ timeFormat ,
59
+ ) } 동안 \n${ usersCount } 명의 사용자가 가입했습니다.\n${ postCount } 개의 공개 포스트가 작성되었습니다.`,
60
60
)
61
61
}
62
62
public async monthly ( ) {
You can’t perform that action at this time.
0 commit comments