Skip to content

Commit 84d2b66

Browse files
author
Richard Lay
committedFeb 20, 2017
Renamed option field name
1 parent 544b0a8 commit 84d2b66

File tree

5 files changed

+7
-9
lines changed

5 files changed

+7
-9
lines changed
 

‎lib/builder.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ internals.removeNoneSchemaOptions = function (options) {
239239
'reuseDefinitions',
240240
'uiCompleteScript',
241241
'deReference',
242-
'dynamicDefinitionPrefix',
242+
'definitionPrefix',
243243
'validatorUrl',
244244
'jsonEditor',
245245
'acceptToProduce',

‎lib/defaults.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ module.exports = {
1919
'uiCompleteScript': null,
2020
'xProperties': true,
2121
'reuseDefinitions': true,
22-
'dynamicDefinitionPrefix': 'default',
22+
'definitionPrefix': 'default',
2323
'deReference': false,
2424
'validatorUrl': '//online.swagger.io/validator',
2525
'acceptToProduce': true, // internal, NOT public

‎lib/definitions.js

+2-4
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,7 @@ const Hash = require('../lib/hash');
44
const Utilities = require('../lib/utilities');
55

66

7-
const internals = {
8-
modelPrefixes: {}
9-
};
7+
const internals = {};
108

119
exports = module.exports = internals.definitions = function (settings) {
1210

@@ -82,7 +80,7 @@ internals.append = function (definitionName, definition, currentCollection, forc
8280
} else {
8381
// else create a new item using definitionName or next model number
8482
if (forceDynamicName) {
85-
if (settings.dynamicDefinitionPrefix === 'useLabel') {
83+
if (settings.definitionPrefix === 'useLabel') {
8684
out = internals.nextModelName(definitionName + ' ', currentCollection);
8785
}
8886
else {

‎lib/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ const schema = Joi.object({
3131
uiCompleteScript: Joi.string().allow(null),
3232
xProperties: Joi.boolean(),
3333
reuseDefinitions: Joi.boolean(),
34-
dynamicDefinitionPrefix: Joi.string(),
34+
definitionPrefix: Joi.string(),
3535
deReference: Joi.boolean(),
3636
validatorUrl: Joi.string().allow(null),
3737
acceptToProduce: Joi.boolean(),

‎test/Integration/definitions-test.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ lab.experiment('definitions', () => {
190190
});
191191
});
192192

193-
lab.test('dynamicDefinitionPrefix = useLabel', (done) => {
193+
lab.test('definitionPrefix = useLabel', (done) => {
194194

195195
// use the label as a prefix for dynamic model names
196196

@@ -241,7 +241,7 @@ lab.experiment('definitions', () => {
241241
}
242242
}];
243243

244-
Helper.createServer({ dynamicDefinitionPrefix: 'useLabel' }, tempRoutes, (err, server) => {
244+
Helper.createServer({ definitionPrefix: 'useLabel' }, tempRoutes, (err, server) => {
245245

246246
expect(err).to.equal(null);
247247
server.inject({ method: 'GET', url: '/swagger.json' }, function (response) {

0 commit comments

Comments
 (0)
Please sign in to comment.