-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Feature/#134 profile edit
- Loading branch information
Showing
22 changed files
with
541 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<vector xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:width="12dp" | ||
android:height="11dp" | ||
android:viewportWidth="12" | ||
android:viewportHeight="11"> | ||
<path | ||
android:pathData="M5.833,8.458C6.563,8.458 7.182,8.203 7.693,7.693C8.203,7.182 8.458,6.563 8.458,5.833C8.458,5.104 8.203,4.484 7.693,3.974C7.182,3.464 6.563,3.208 5.833,3.208C5.104,3.208 4.484,3.464 3.974,3.974C3.464,4.484 3.208,5.104 3.208,5.833C3.208,6.563 3.464,7.182 3.974,7.693C4.484,8.203 5.104,8.458 5.833,8.458ZM5.833,7.292C5.425,7.292 5.08,7.151 4.798,6.869C4.516,6.587 4.375,6.242 4.375,5.833C4.375,5.425 4.516,5.08 4.798,4.798C5.08,4.516 5.425,4.375 5.833,4.375C6.242,4.375 6.587,4.516 6.869,4.798C7.151,5.08 7.292,5.425 7.292,5.833C7.292,6.242 7.151,6.587 6.869,6.869C6.587,7.151 6.242,7.292 5.833,7.292ZM1.167,10.5C0.846,10.5 0.571,10.386 0.343,10.157C0.114,9.929 0,9.654 0,9.333V2.333C0,2.013 0.114,1.738 0.343,1.509C0.571,1.281 0.846,1.167 1.167,1.167H3.004L3.733,0.379C3.84,0.262 3.969,0.17 4.12,0.102C4.27,0.034 4.428,0 4.594,0H7.073C7.238,0 7.396,0.034 7.547,0.102C7.698,0.17 7.826,0.262 7.933,0.379L8.663,1.167H10.5C10.821,1.167 11.095,1.281 11.324,1.509C11.552,1.738 11.667,2.013 11.667,2.333V9.333C11.667,9.654 11.552,9.929 11.324,10.157C11.095,10.386 10.821,10.5 10.5,10.5H1.167Z" | ||
android:fillColor="#131318"/> | ||
</vector> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
data/user/src/main/java/com/record/user/model/remote/request/RequestUpdateProfileDto.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package com.record.user.model.remote.request | ||
|
||
import kotlinx.serialization.SerialName | ||
import kotlinx.serialization.Serializable | ||
|
||
@Serializable | ||
data class RequestUpdateProfileDto( | ||
@SerialName("nickname") | ||
var nickname: String, | ||
@SerialName("profileImageUrl") | ||
var profileImageUrl: String, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.