File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -81,14 +81,16 @@ module.exports = generators.Base.extend({
81
81
var schema = this . fs . read ( this . templatePath ( this . addon . type + '/schema.json' ) ) ;
82
82
var form = this . fs . read ( this . templatePath ( this . addon . type + '/form.json' ) ) ;
83
83
84
- /* Just a fast and easy fix.. because current version isn't working */
84
+ /* TODO: Just a fast and easy fix for now..
85
+ */
85
86
form = JSON . parse ( form ) ;
86
87
if ( form [ 0 ] . hasOwnProperty ( 'type' ) ) {
87
88
form [ 0 ] . type = this . addon . typeName ;
88
89
}
89
90
90
91
this . addon . files . base . forEach ( function ( file ) {
91
- // what to inject in the test controller
92
+ /* What to inject in the test controller
93
+ */
92
94
var testModule = [ 'schemaForm' ] ;
93
95
var dest = file . replace ( '_' , '.' )
94
96
. replace ( 'module.js' , this . addon . paramName + '.js' ) ;
You can’t perform that action at this time.
0 commit comments