You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ramlo/src/modules/api.js:246
if (Object.keys(ramlBody).length > 0 && _.isFunction(body.schemaContent)) {
^
ReferenceError: body is not defined
at produceRequestBody (/tmp/ramlo/src/modules/api.js:246:58)
at /tmp/ramlo/src/modules/api.js:98:26
at arrayEach (/tmp/ramlo/node_modules/lodash/lodash.js:522:11)
at Function.forEach (/tmp/ramlo/node_modules/lodash/lodash.js:9011:14)
at produceEndpoints (/tmp/ramlo/src/modules/api.js:81:7)
at /tmp/ramlo/src/modules/api.js:66:42
at arrayEach (/tmp/ramlo/node_modules/lodash/lodash.js:522:11)
at Function.forEach (/tmp/ramlo/node_modules/lodash/lodash.js:9011:14)
at produceResources (/tmp/ramlo/src/modules/api.js:45:7)
at module.exports (/tmp/ramlo/src/modules/api.js:688:26)
ramlo 0.2.1
It should be
_.isFunction(ramlBody.schemaContent)
not_.isFunction(body.schemaContent)
The text was updated successfully, but these errors were encountered: