1.31.2 • Published 8 years ago
@4geit/swg-register-path v1.31.2
@4geit/swg-register-path 
set a register endpoint to your API
Installation
- A recommended way to install @4geit/swg-register-path is through npm package manager using the following command:
npm i @4geit/swg-register-path --saveOr use yarn using the following command:
yarn add @4geit/swg-register-path- In your swagger file, you need to add a reference to the
SwgRegisterPathdefinition under thepathsproperty (e.g./api/swagger/swagger.yaml) as below:
swagger: "2.0"
# ...
paths:
/register:
$ref: ../../node_modules/@4geit/swg-register-path/swagger.yaml#/definitions/SwgRegisterPath
# ...And you will also need to add the path to the controllers folder of the swg-register-path package so that swagger-node will find the relevant controller to use. Edit the file /config/default.yaml and add two new paths to the properties mockControllersDirs and controllersDirs as illustrated below:
swagger:
# ...
bagpipes:
_router:
# ...
mockControllersDirs:
# ...
- node_modules/@4geit/swg-register-path/mocks
# ...
controllersDirs:
# ...
- node_modules/@4geit/swg-register-path/controllers
# ...