Merge pull request #8 from dalbodeule/develop

BUG FIX: daily counter with update updated_at column
This commit is contained in:
JinU Choi
2024-07-27 21:09:48 +09:00
committed by GitHub
2 changed files with 2 additions and 1 deletions

View File

@@ -1,6 +1,6 @@
kotlin.code.style=official
group = space.mori
version = 1.0.1
version = 1.0.2
org.gradle.jvmargs=-Dfile.encoding=UTF-8
org.gradle.console=plain

View File

@@ -96,6 +96,7 @@ object CounterService {
Pair(counter.value, false)
else {
counter.value += increment
counter.updatedAt = today
Pair(counter.value, true)
}
}