Skip to content

Commit

Permalink
bugfix merge
Browse files Browse the repository at this point in the history
  • Loading branch information
LordRenDS committed May 8, 2023
1 parent 243bd5b commit f2a30ec
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package com.provedcode.kudos.model.response;

public record KudosAmount(
long amount, boolean hasKudos
long amount
) {
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package com.provedcode.talent.model.entity;

import com.provedcode.kudos.model.entity.Kudos;
import jakarta.persistence.*;
import jakarta.validation.constraints.NotEmpty;
import lombok.*;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,4 @@
import org.springframework.transaction.annotation.Transactional;

public interface TalentRepository extends JpaRepository<Talent, Long> {

}
2 changes: 1 addition & 1 deletion src/main/resources/application-dev.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ spring.datasource.driver-class-name=org.h2.Driver
spring.datasource.username=sa
spring.datasource.url=jdbc:h2:mem:./testdb;MODE=PostgreSQL;DATABASE_TO_LOWER=TRUE;DEFAULT_NULL_ORDERING=HIGH
#logging.level.web=DEBUG
logging.level.sql=DEBUG
#logging.level.sql=DEBUG

0 comments on commit f2a30ec

Please sign in to comment.