1
0
Fork 0

Fix TODOs in Foxx docs

This commit is contained in:
Alan Plum 2016-12-12 15:40:51 +01:00
parent 27099a1f73
commit ae61d0e0e6
No known key found for this signature in database
GPG Key ID: 8ED72A9A323B6EFD
3 changed files with 3 additions and 4 deletions

View File

@ -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.

View File

@ -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:

View File

@ -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: