Skip to content

Commit

Permalink
Merge pull request #90 from Tune-Fun/fix/account/login_240813
Browse files Browse the repository at this point in the history
fix(account) login
  • Loading branch information
habinkim authored Aug 13, 2024
2 parents 29e6ba0 + 1538b3d commit c366e49
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ dependencies {
testImplementation 'org.springframework.kafka:spring-kafka-test'
testImplementation 'org.apache.commons:commons-lang3:3.15.0'
testImplementation 'com.tngtech.archunit:archunit-junit5:1.2.2' // Architecture Rule Test
testImplementation 'com.navercorp.fixturemonkey:fixture-monkey-starter:1.0.21' // Test Double
testImplementation 'com.navercorp.fixturemonkey:fixture-monkey-starter:1.0.23' // Test Double
testImplementation 'org.quickperf:quick-perf-junit5:1.1.0' // Performance Test
testImplementation 'io.karatelabs:karate-junit5:1.5.0.RC5' // Both Test Pyramid
testImplementation 'com.icegreen:greenmail-junit5:2.0.1'
Expand Down Expand Up @@ -194,7 +194,7 @@ sourceSets {

tasks.withType(JavaCompile).configureEach {
options.encoding = 'UTF-8'
options.compilerArgs << '-parameters'
// options.compilerArgs << '-parameters'
options.annotationProcessorGeneratedSourcesDirectory(file(generated))
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ private static SaveJwtToken getSaveJwtToken(RegisteredAccount registeredAccount,

@NotNull
private static LoginResult getLoginResult(RegisteredAccount registeredAccount, String accessToken, String refreshToken) {
return new LoginResult(registeredAccount.id(), registeredAccount.username(), registeredAccount.email(), registeredAccount.nickname(),
return new LoginResult(registeredAccount.id(), registeredAccount.username(), registeredAccount.nickname(), registeredAccount.email(),
registeredAccount.roles(), accessToken, refreshToken);
}

Expand Down

0 comments on commit c366e49

Please sign in to comment.