Skip to content

Commit

Permalink
Merge pull request #123 from Happy-HOBAK/fix/#122
Browse files Browse the repository at this point in the history
[#122] ν”„λ‘œν•„ μˆ˜μ • μ‹œ 이름도 ν•¨κ»˜ μˆ˜μ •ν•˜λ„λ‘ λ³€κ²½
  • Loading branch information
KkomSang authored Jul 3, 2024
2 parents 30bf730 + 3e58c59 commit f790f9f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
5 changes: 0 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,6 @@ repositories {
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-validation'
// implementation 'org.springframework.boot:spring-boot-starter-oauth2-authorization-server'
// implementation 'org.springframework.boot:spring-boot-starter-oauth2-client'
// implementation 'org.springframework.boot:spring-boot-starter-oauth2-resource-server'
// implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.0.2'
compileOnly 'org.projectlombok:lombok'
Expand All @@ -47,7 +43,6 @@ dependencies {
implementation 'io.jsonwebtoken:jjwt-api:0.11.5'
implementation 'io.jsonwebtoken:jjwt-impl:0.11.5'
implementation 'io.jsonwebtoken:jjwt-jackson:0.11.5'
// implementation group: 'org.springdoc', name: 'springdoc-openapi-starter-webmvc-ui', version: '2.1.0'
}

tasks.named('test') {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,5 +79,6 @@ public boolean isEnabled() {
public void updateUserProfile(UserProfileUpdateRequestDto requestDto) {
this.gender = requestDto.getGender();
this.age = requestDto.getAge();
this.name = requestDto.getName();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,7 @@ public class UserProfileUpdateRequestDto {
@Min(1)
private int age;

private String name;

}

0 comments on commit f790f9f

Please sign in to comment.