We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b1310a commit f5063d7Copy full SHA for f5063d7
1 file changed
data/auth/src/main/java/com/terning/data/auth/repositoryimpl/AuthRepositoryImpl.kt
@@ -16,7 +16,7 @@ class AuthRepositoryImpl @Inject constructor(
16
private val authDataSource: AuthDataSource
17
) : AuthRepository {
18
19
- override suspend fun postSignIn(
+ override suspend fun signIn(
20
authorization: String,
21
request: SignInRequest
22
): Result<SignInResponse> = runCatching {
@@ -26,7 +26,7 @@ class AuthRepositoryImpl @Inject constructor(
26
).result.toSignInResponse()
27
}
28
29
- override suspend fun postSignUp(
+ override suspend fun signUp(
30
authId: String,
31
request: SignUpRequest
32
): Result<SignUpResponse> = runCatching {
0 commit comments