Skip to content

Commit 0e901df

Browse files
committed
Updated middleware description
1 parent eaa5eeb commit 0e901df

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Collection of plugins for use in your [L³](https://github.com/lambda-lambda-lam
77
| Name | Description |
88
|-----------------------------|-------------------------------------------|
99
| [AccessControlHeaders](https://github.com/lambda-lambda-lambda/middleware/tree/master/plugins/AccessControlHeaders) | Middleware to send `Access-Control-*` headers. |
10-
| [AppConfigPlugin](https://github.com/lambda-lambda-lambda/middleware/tree/master/plugins/AppConfigPlugin) | Middleware to store the app configuration. |
10+
| [AppConfigPlugin](https://github.com/lambda-lambda-lambda/middleware/tree/master/plugins/AppConfigPlugin) | Middleware to support a file-based app configuration. |
1111
| [BasicAuthHandler](https://github.com/lambda-lambda-lambda/middleware/tree/master/plugins/BasicAuthHandler) | Middleware to prompt [Basic Authentication](https://en.wikipedia.org/wiki/Basic_access_authentication). |
1212
| [CloudFrontCacheHeader](https://github.com/lambda-lambda-lambda/middleware/tree/master/plugins/CloudFrontCacheHeader) | Middleware to send CloudFront `Cache-Control` header. |
1313
| [CookieParserPlugin](https://github.com/lambda-lambda-lambda/middleware/tree/master/plugins/CookieParserPlugin) | Middleware to parse/store incoming [HTTP cookies](https://developer.mozilla.org/en-US/docs/Web/HTTP/Cookies). |

plugins/AppConfigPlugin/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# AppConfigPlugin
22

3-
Middleware to store the app configuration.
3+
Middleware to support a file-based app configuration.
44

55
## Installation
66

plugins/AppConfigPlugin/src/plugin.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
'use strict';
22

33
/**
4-
* Middleware to store the app configuration.
4+
* Middleware to support a file-based app configuration.
55
*/
66
module.exports = (config) => {
77
return (req, res, next) => {

0 commit comments

Comments
 (0)