1
0
Fork 0
mirror of synced 2024-06-26 18:10:51 +12:00
budibase/packages/server/scripts/docs
Tobias Speicher 9d25f26791
Replace deprecated String.prototype.substr()
String.prototype.substr() is deprecated (see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/substr) so we replace it with slice() which works similarily but isn't deprecated.
Signed-off-by: Tobias Speicher <rootcommander@gmail.com>
2022-02-20 15:28:39 +01:00
..
generate.js Updating docs for tables, adding a swagger generation tool and a README describing how to use it. 2021-11-26 14:13:53 +00:00
README.md Updating docs for tables, adding a swagger generation tool and a README describing how to use it. 2021-11-26 14:13:53 +00:00
toSwagger.js Replace deprecated String.prototype.substr() 2022-02-20 15:28:39 +01:00

Documentation

This directory contains the scripts required to generate the APIDoc based documentation. You can find the docs about comment structure at the APIDocs page.

In general most API endpoints will look like:

  /**
   * @api {post} /api/:param/url Give it a name 
   * @apiName Give it a name
   * @apiGroup group
   * @apiPermission permission
   * @apiDescription Describe what the endpoint does, any special cases the user
   * should be aware of.
   *
   * @apiParam {string} param describe a URL parameter.
   *
   * @apiParam (Body) input describe a field on the body.
   *
   * @apiSuccess {object} output describe the output.
   */

There are a few key points to note when writing API docs:

  1. Don't use @apiBody - this isn't currently supported by our swagger converter.
  2. Make sure to always have an @api definition at the start, which must always have the HTTP verb, the endpoint URL and the name.
  3. There are three ways you can specify parameters used as inputs for your endpoint, @apiParam for a URL param, @apiParam (Body) for a field on the request body and @apiParam (Query) for query string parameters.
  4. The @apiGroup should be the same for all API Doc comments in a route file.