Skip to content

Commit

Permalink
SHIBUI-2394
Browse files Browse the repository at this point in the history
corrections to code and tests
  • Loading branch information
chasegawa committed Oct 11, 2022
1 parent 324e46e commit a91b683
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions backend/src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ spring.jpa.properties.hibernate.show_sql=false
spring.jpa.properties.hibernate.format_sql=true
spring.jpa.properties.hibernate.check_nullability=true
spring.jpa.hibernate.use-new-id-generator-mappings=true
spring.jpa.properties.hibernate.enable_lazy_load_no_trans=true

#Envers versioning
spring.jpa.properties.org.hibernate.envers.store_data_at_delete=true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ class Pac4JTestingConfig {

@Bean
@Primary
GroupUpdatedEntityListener groupUpdatedEntityListener(OwnershipRepository repo) {
GroupUpdatedEntityListener groupUpdatedEntityListener(OwnershipRepository repo, GroupsRepository groupsRepository) {
GroupUpdatedEntityListener listener = new GroupUpdatedEntityListener()
listener.init(repo)
listener.init(repo, groupsRepository)
return listener
}

Expand Down

0 comments on commit a91b683

Please sign in to comment.