Fix get token endpoint on old student module

This commit is contained in:
Mikołaj Pich 2024-05-16 18:51:00 +02:00
parent 20813d9978
commit 0989dc2442
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -18,7 +18,7 @@ ext {
moshi = "1.13.0"
}
version = "2.6.6"
version = "2.6.7-SNAPSHOT"
group = "io.github.wulkanowy"
nexusPublishing {

View file

@ -179,7 +179,7 @@ internal interface StudentService {
@Body body: Any = Any(),
): ApiResponse<List<Device>>
@POST("ZarejestrowaneUrzadzenia.mvc/Get")
@POST("RejestracjaUrzadzeniaToken.mvc/Get")
suspend fun getToken(
@Body body: Any = Any(),
): ApiResponse<TokenResponse>