This commit is contained in:
Syrus Akbary 2016-06-23 21:53:48 -07:00 committed by GitHub
parent 08ccf2228c
commit 5bad9046f0

View File

@ -37,7 +37,7 @@ class AuthorizationMiddleware(object):
``` ```
Then, add the middleware to your schema: Then, add the middleware to your schema:
```python ```python
schema = Schema(middlewares=[AuthorizationMiddleware()]) schema = Schema(middlewares=[AuthorizationMiddleware()])
``` ```