1.28.0 • Published 7 years ago

@4geit/swg-data-table-path v1.28.0

Weekly downloads
-
License
MIT
Repository
-
Last release
7 years ago

@4geit/swg-data-table-path npm version


endpoint to hande a data table

Installation

  1. A recommended way to install @4geit/swg-data-table-path is through npm package manager using the following command:
npm i @4geit/swg-data-table-path --save

Or use yarn using the following command:

yarn add @4geit/swg-data-table-path
  1. In your swagger file, you need to add a reference to the SwgDataTablePath definition under the paths property (e.g. /api/swagger/swagger.yaml) as below:
swagger: "2.0"
# ...
paths:
  /data-table:
    $ref: ../../node_modules/@4geit/swg-data-table-path/swagger.yaml#/definitions/SwgDataTablePath
# ...

And you will also need to add the path to the controllers folder of the swg-data-table-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-data-table-path/mocks
        # ...
      controllersDirs:
        # ...
        - node_modules/@4geit/swg-data-table-path/controllers
        # ...