@4geit/swg-chatbox-model

1.31.5 • Public • Published

@4geit/swg-chatbox-model npm version


chatbox model for the chatbox feature using CRUD operators

Installation

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

Or use yarn using the following command:

yarn add @4geit/swg-chatbox-model
  1. In your swagger file, you need to add a reference to the SwgChatboxModel definition under the definitions property (e.g. /api/swagger/swagger.yaml) as below:
swagger: "2.0"
# ...
definitions:
  SwgChatboxModel:
    $ref: ../../node_modules/@4geit/swg-chatbox-model/swagger.yaml#/definitions/SwgChatboxModel
# ...
  1. SwgChatboxModel also comes along with some endpoints you can expose to the API, to do so you will need to add a reference to the SwgChatboxModel definition under the paths property (e.g. /api/swagger/swagger.yaml) as below:
swagger: "2.0"
# ...
paths:
  /chatbox:
    $ref: ../../node_modules/@4geit/swg-chatbox-model/swagger.yaml#/definitions/ChatboxListPath
  /chatbox/{id}:
    $ref: ../../node_modules/@4geit/swg-chatbox-model/swagger.yaml#/definitions/ChatboxItemPath
  /chatbox/populate:
    $ref: ../../node_modules/@4geit/swg-chatbox-model/swagger.yaml#/definitions/PopulatePath
# ...

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

Readme

Keywords

none

Package Sidebar

Install

npm i @4geit/swg-chatbox-model

Weekly Downloads

0

Version

1.31.5

License

MIT

Last publish

Collaborators

  • geraldinestarke
  • fabianstarke
  • canercandan