@4geit/swg-account-model
v1.31.2
Published
swagger definition of an account model
Keywords
Readme
@4geit/swg-account-model 
swagger definition of an account model following the REST CRUD pattern
Installation
- A recommended way to install @4geit/swg-account-model is through npm package manager using the following command:
npm i @4geit/swg-account-model --saveOr use yarn using the following command:
yarn add @4geit/swg-account-model- In your swagger file, you need to add a reference to the
SwgAccountModeldefinition under thedefinitionsproperty (e.g./api/swagger/swagger.yaml) as below:
swagger: "2.0"
# ...
definitions:
SwgAccountModel:
$ref: ../../node_modules/@4geit/swg-account-model/swagger.yaml#/definitions/SwgAccountModel
# ...- In your swagger file, you need to add a reference to the
PopulatePathdefinition under thepathsproperty (e.g./api/swagger/swagger.yaml) as below:
swagger: "2.0"
# ...
paths:
/populate:
$ref: ../../node_modules/@4geit/swg-account-model/swagger.yaml#/definitions/PopulatePath
/users:
$ref: ../../node_modules/@4geit/swg-account-model/swagger.yaml#/definitions/UsersPath
# ...And you will also need to add the path to the controllers folder of the swg-account-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-account-model/mocks
# ...
controllersDirs:
# ...
- node_modules/@4geit/swg-account-model/controllers
# ...