Skip to content

Commit

Permalink
Merge pull request #18 from FakeDevelopers/feature/BDBD-174
Browse files Browse the repository at this point in the history
FIX : Login Retrofit 오류 수정
  • Loading branch information
minseonglove authored Apr 22, 2022
2 parents aaa94e8 + ef2f587 commit 99b6fe2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/bidderbidderCI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: "release"
release_name: Release
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
- name: Upload Release APK
id: upload_release_asset
uses: actions/upload-release-asset@v1
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
package com.fakedevelopers.bidderbidder.api.service

import retrofit2.Response
import retrofit2.http.Field
import retrofit2.http.FormUrlEncoded
import retrofit2.http.POST

interface UserLoginService {
@FormUrlEncoded
@POST("user/login")
suspend fun postLogin(email: String, passwd: String): Response<String>
suspend fun postLogin(@Field("email") email: String,@Field("passwd") passwd: String): Response<String>
}

0 comments on commit 99b6fe2

Please sign in to comment.