Skip to content

Commit

Permalink
update samples
Browse files Browse the repository at this point in the history
  • Loading branch information
mshima committed Sep 6, 2023
1 parent 77bcca5 commit 4f9102b
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 11 deletions.
8 changes: 4 additions & 4 deletions test-integration/jdl/21-points.jdl
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,12 @@ enum Units {
}

relationship OneToOne {
Preferences{user(login)} to User
Preferences{user(login)} to User with builtInEntity
}
relationship ManyToOne {
BloodPressure{user(login)} to User
Weight{user(login)} to User
Points{user(login)} to User
BloodPressure{user(login)} to User with builtInEntity
Weight{user(login)} to User with builtInEntity
Points{user(login)} to User with builtInEntity
}

paginate BloodPressure, Weight with infinite-scroll
Expand Down
2 changes: 1 addition & 1 deletion test-integration/jdl/gateway-oauth2.jdl
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ entity Tag {
}

relationship ManyToOne {
Blog{user(login)} to User
Blog{user(login)} to User with builtInEntity
Post{blog(name)} to Blog
}

Expand Down
4 changes: 2 additions & 2 deletions test-integration/jdl/monolith-jwt.jdl
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ application {
packageName org.jhipster.demo.blog
prodDatabaseType mysql
buildTool maven
clientFramework angularX
clientFramework angular
testFrameworks [cypress]
}
entities *
Expand Down Expand Up @@ -36,7 +36,7 @@ entity Tag {
}

relationship ManyToOne {
Blog{user(login)} to User
Blog{user(login)} to User with builtInEntity with builtInEntity
Post{blog(name)} to Blog
}

Expand Down
2 changes: 1 addition & 1 deletion test-integration/jdl/monolith-oauth2.jdl
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ entity Tag {
}

relationship ManyToOne {
Blog{user(login)} to User
Blog{user(login)} to User with builtInEntity
Post{blog(name)} to Blog
}

Expand Down
3 changes: 0 additions & 3 deletions test-integration/jdl/reactive-oauth2.jdl
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,7 @@ application {
applicationType monolith
authenticationType oauth2
packageName org.jhipster.demo.blog
devDatabaseType mongodb
databaseType mongodb,
devDatabaseType mongodb,
prodDatabaseType mongodb,
buildTool maven
clientFramework angular
testFrameworks [cypress]
Expand Down

0 comments on commit 4f9102b

Please sign in to comment.