We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3de8738 commit b56389dCopy full SHA for b56389d
.blueprint/generate-sample/generator.mjs
@@ -69,9 +69,9 @@ export default class extends BaseGenerator {
69
this.jdlSample = 'app';
70
}
71
if (this.sampleName.includes('jwt-')) {
72
- this.jdlSample = this.jdlSample + '_withUserRelation';
+ this.jdlSample = `${this.jdlSample}_withUserRelation`;
73
74
- this.jdlSample = this.jdlSample + '.jdl';
+ this.jdlSample = `${this.jdlSample}.jdl`;
75
this.copyTemplate(`samples/jdl-default/${this.jdlSample}`, this.jdlSample, { noGlob: true });
76
77
},
0 commit comments