Skip to content

Commit f1102b4

Browse files
committed
refactor: improve bad api token error handling; clean up
1 parent a220554 commit f1102b4

File tree

22 files changed

+532
-422
lines changed

22 files changed

+532
-422
lines changed

.gitignore

Lines changed: 5 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,5 @@
1-
.gradle
2-
3-
.kotlin
4-
buildSrc/.kotlin
5-
6-
**/build/
7-
8-
/logs
9-
/webapp-app/logs
10-
/lib/logs
11-
/out
12-
13-
!gradle-wrapper.jar
1+
**/.gradle
2+
**/.kotlin
3+
**/.idea
4+
**/build
5+
**/logs

.idea/inspectionProfiles/profiles_settings.xml

Lines changed: 0 additions & 6 deletions
This file was deleted.

.idea/inspectionProfiles/tg-bot.xml

Lines changed: 0 additions & 36 deletions
This file was deleted.

.idea/kotlinc.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

buildSrc/settings.gradle.kts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ dependencyResolutionManagement {
1818
@Suppress("UnstableApiUsage")
1919
repositories {
2020
mavenCentral()
21-
gradlePluginPortal()
2221
mavenLocal()
2322
maven("https://redirector.kotlinlang.org/maven/bootstrap")
2423
}

gradle/libs.versions.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ jsoup = "1.18.1"
1212
kotlinx-coroutines = "1.10.2"
1313
kotlinx-serialization = "1.8.1"
1414
konsist = "0.17.3"
15-
ktor = "3.1.2"
15+
ktor = "3.2.3"
1616
log4j = "2.24.3"
17-
seskar = "4.10.0"
18-
setupapp = "1.8"
17+
seskar = "4.12.0"
18+
setupapp = "1.10"
1919
slf4j = "2.0.17"
20-
utils = "3.3.2"
20+
utils = "3.4.0"
2121

2222
[libraries]
2323

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.0.0-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)