Explorar el Código

fix(mongo): fix file name generation errors (#2479)

Before this, no matter what style is used, lowercase file names without underscores will be generated.
foliet hace 2 años
padre
commit
b51339b69b
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      tools/goctl/model/mongo/generate/generate.go

+ 1 - 1
tools/goctl/model/mongo/generate/generate.go

@@ -97,7 +97,7 @@ func generateCustomModel(ctx *Context) error {
 
 func generateTypes(ctx *Context) error {
 	for _, t := range ctx.Types {
-		fn, err := format.FileNamingFormat(ctx.Cfg.NamingFormat, t+"types")
+		fn, err := format.FileNamingFormat(ctx.Cfg.NamingFormat, t+"_types")
 		if err != nil {
 			return err
 		}