We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 55d2245 commit 9607161Copy full SHA for 9607161
1 file changed
pkg/types/config.go
@@ -35,7 +35,7 @@ type ModelClassConfig struct {
35
func checkShouldIncludeClassInModel(classConfig ModelClassConfig, classID *string, parentClassID *string) (result bool, newParentClassID *string) {
36
if classID == nil {
37
if parentClassID == nil {
38
- return false, nil
+ return len(classConfig.Includes) <= 0, nil
39
} else {
40
classID = parentClassID
41
}
0 commit comments