Commit 9d37b967 authored by Vladislav Bogdashkin's avatar Vladislav Bogdashkin 🎣

minor changes

parent b3851231
...@@ -14,8 +14,10 @@ import javax.inject.Inject ...@@ -14,8 +14,10 @@ import javax.inject.Inject
class AuthRepository @Inject constructor( class AuthRepository @Inject constructor(
val roomparkApi:IRoomParkApi val roomparkApi:IRoomParkApi
) : AuthContract{ ) : AuthContract{
override fun signIn(email: String, password: String): Observable<AuthInfoModel> = override fun signIn(email: String, password: String): Observable<AuthInfoModel> =
{} roomparkApi.authenticate(email,password)
.map { }
override fun signOut(): Completable { override fun signOut(): Completable {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates. TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment