회원가입
- marketing pid 추가
This commit is contained in:
@@ -10,6 +10,7 @@ data class SignUpRequest(
|
||||
@SerializedName("password") val password: String,
|
||||
@SerializedName("nickname") val nickname: String,
|
||||
@SerializedName("gender") val gender: Gender,
|
||||
@SerializedName("marketingPid") val marketingPid: String,
|
||||
@SerializedName("isAgreeTermsOfService") val isAgreeTermsOfService: Boolean,
|
||||
@SerializedName("isAgreePrivacyPolicy") val isAgreePrivacyPolicy: Boolean,
|
||||
@SerializedName("container") val container: String = "aos"
|
||||
|
||||
@@ -80,6 +80,7 @@ class SignUpViewModel(private val repository: UserRepository) : BaseViewModel()
|
||||
password = password,
|
||||
nickname = nickname,
|
||||
gender = _genderLiveData.value!!,
|
||||
marketingPid = SharedPreferenceManager.marketingPid,
|
||||
isAgreeTermsOfService = _isAgreeTermsOfServiceLiveData.value!!,
|
||||
isAgreePrivacyPolicy = _isAgreePrivacyPolicyLiveData.value!!
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user