Skip to content

Commit

Permalink
fix(Configurations.settings.dashboard.auth): made configurations.sett…
Browse files Browse the repository at this point in the history
…ings.dashboard.auth nullable

nullablility
  • Loading branch information
Robert Ende committed Apr 29, 2019
1 parent c107dea commit 413beb3
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions lib/v1/configurations/items/settings.js
Expand Up @@ -93,8 +93,15 @@ module.exports = {
type: 'string' // client default kDashboardUrl is 'https://dashboard.tillhub.com' or 'https://staging-dashboard.tillhub.com'
},
auth: {
description: ' -- client has implemented this but is not using it, please provide a proper description --',
type: 'string'
description: ' -- client reads but does not use this, please provide a proper description --',
oneOf: [
{
type: 'string'
},
{
type: 'null'
}
]
}
}
},
Expand Down

0 comments on commit 413beb3

Please sign in to comment.