mirror of
https://github.com/TanelOrumaa/Estonian-ID-card-mobile-authenticator-POC.git
synced 2024-12-22 04:20:16 +02:00
deleted unused code
This commit is contained in:
parent
1b9a59d4eb
commit
df5febabb7
@ -68,8 +68,4 @@ dependencies {
|
|||||||
'io.jsonwebtoken:jjwt-gson:0.11.2'
|
'io.jsonwebtoken:jjwt-gson:0.11.2'
|
||||||
|
|
||||||
implementation 'com.koushikdutta.ion:ion:3.1.0'
|
implementation 'com.koushikdutta.ion:ion:3.1.0'
|
||||||
|
|
||||||
// Retrofit + Moshi Converter
|
|
||||||
implementation 'com.squareup.retrofit2:converter-moshi:2.9.0'
|
|
||||||
implementation 'com.squareup.moshi:moshi-kotlin:1.9.3'
|
|
||||||
}
|
}
|
@ -1,34 +0,0 @@
|
|||||||
package com.tarkvaraprojekt.mobileauthapp.network
|
|
||||||
|
|
||||||
import com.squareup.moshi.Moshi
|
|
||||||
import com.squareup.moshi.kotlin.reflect.KotlinJsonAdapterFactory
|
|
||||||
import retrofit2.Response
|
|
||||||
import retrofit2.Retrofit
|
|
||||||
import retrofit2.converter.moshi.MoshiConverterFactory
|
|
||||||
import retrofit2.http.Body
|
|
||||||
import retrofit2.http.GET
|
|
||||||
import retrofit2.http.Headers
|
|
||||||
import retrofit2.http.POST
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Class for making HTTP requests
|
|
||||||
* Based on https://developer.android.com/courses/pathways/android-basics-kotlin-unit-4-pathway-2
|
|
||||||
*/
|
|
||||||
const val BASE_URL =
|
|
||||||
"https://6bb0-85-253-195-252.ngrok.io"
|
|
||||||
|
|
||||||
private val moshi = Moshi.Builder().add(KotlinJsonAdapterFactory()).build()
|
|
||||||
private val retrofit = Retrofit.Builder().addConverterFactory(MoshiConverterFactory.create(moshi))
|
|
||||||
.baseUrl(BASE_URL).build()
|
|
||||||
|
|
||||||
interface TokenApiService {
|
|
||||||
@Headers("Content-Type: application/json")
|
|
||||||
@POST("/auth/authentication")
|
|
||||||
suspend fun postToken(@Body data: String): Response<TokenItem>
|
|
||||||
}
|
|
||||||
|
|
||||||
object TokenApi {
|
|
||||||
val retrofitService : TokenApiService by lazy {
|
|
||||||
retrofit.create(TokenApiService::class.java)
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,9 +0,0 @@
|
|||||||
package com.tarkvaraprojekt.mobileauthapp.network
|
|
||||||
|
|
||||||
/**
|
|
||||||
* TokenItem for making POST request.
|
|
||||||
*/
|
|
||||||
data class TokenItem (
|
|
||||||
val token: String,
|
|
||||||
val challenge: String,
|
|
||||||
)
|
|
Loading…
Reference in New Issue
Block a user