@4geit/swg-check-availability-helper
v1.31.0
Published
wrapper function to disable a swagger endpoint if x-disabled property is true
Downloads
27
Keywords
Readme
@4geit/swg-check-availability-helper
wrapper function to disable a swagger endpoint if x-disabled property is true
Installation
- A recommended way to install @4geit/swg-check-availability-helper is through npm package manager using the following command:
npm i @4geit/swg-check-availability-helper --save
Or use yarn
using the following command:
yarn add @4geit/swg-check-availability-helper
- All you have to do is to import the
@4geit/swg-check-availability-helper
package in your controller or mock file as below:
// ...
const swgCheckAvailabilityHelper = require('@4geit/swg-check-availability-helper');
// ...
And use it with one of your endpoint controller as below:
// ...
module.exports = {
// ...
getItems: swgCheckAvailabilityHelper(
(req, res) => {
// ...
}
),
// ...
};