mirror of https://gitee.com/bigwinds/arangodb
Fix TODOs in Foxx docs
This commit is contained in:
parent
27099a1f73
commit
ae61d0e0e6
|
@ -338,4 +338,4 @@ You now know how to create a Foxx service from scratch, how to handle user input
|
|||
|
||||
* Tired of reinventing the wheel? Learn about [dependencies](Dependencies.md).
|
||||
|
||||
<!-- TODO * Everything broken? You can [write tests] (Testing.md) to make sure your logic remains sound. -->
|
||||
* Everything broken? You can [write tests] (Testing.md) to make sure your logic remains sound.
|
||||
|
|
|
@ -32,7 +32,6 @@ Every service comes with a `manifest.json` file providing metadata. The followin
|
|||
* **dependencies**: `Object` (optional) and **provides**: `Object` (optional)
|
||||
|
||||
Objects specifying other services this service has as [dependencies](Dependencies.md) and what dependencies it can provide to other services.
|
||||
<!-- TODO: examples -->
|
||||
|
||||
* **engines**: `Object` (optional)
|
||||
|
||||
|
@ -78,7 +77,7 @@ Every service comes with a `manifest.json` file providing metadata. The followin
|
|||
|
||||
* **tests**: `string` or `Array<string>` (optional)
|
||||
|
||||
A path or list of paths of JavaScript tests provided for this service. <!-- TODO link to Testing.md -->
|
||||
A path or list of paths of [JavaScript tests](Testing.md) provided for this service.
|
||||
|
||||
Additionally manifests can provide the following metadata:
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
Auth and OAuth2
|
||||
===============
|
||||
|
||||
The `util-simple-auth` and `util-oauth2` Foxx services have been replaced with the [Foxx auth](../Auth.md) and Foxx OAuth2<!-- TODO (link to docs) --> modules. It is no longer necessary to install these services as dependencies in order to use the functionality.
|
||||
The `util-simple-auth` and `util-oauth2` Foxx services have been replaced with the [Foxx auth](../Auth.md) and [Foxx OAuth2](../OAuth2.md) modules. It is no longer necessary to install these services as dependencies in order to use the functionality.
|
||||
|
||||
Old:
|
||||
|
||||
|
|
Loading…
Reference in New Issue