Skip to content

Commit

Permalink
Fix example link (#1682)
Browse files Browse the repository at this point in the history
This PR adds a link to the `this example` link that was missing a URL.
  • Loading branch information
beardedtim authored and Evans Hauser committed Sep 17, 2018
1 parent 8446ce4 commit d9590ee
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ All of the packages in the `apollo-server` repo are released with the same versi

### vNEXT

- Update link inside Authentication Docs [PR #1682](https://github.com/apollographql/apollo-server/pull/1682)

### v2.0.8

- Reporting: Catch Error if JSON.Stringify Fails for Engine Trace [PR #1668](https://github.com/apollographql/apollo-server/pull/1668)
Expand Down
2 changes: 1 addition & 1 deletion docs/source/best-practices/authentication.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ GraphQL offers similar authentication and authorization mechanics as REST and ot
<h2>Authenticating users</h2>

All of the approaches require that users be authenticated with the server. If our system already has login method setup to authenticate users and provide credentials that can be used in subsequent requests, we can use this same system to authenticate GraphQL requests. With that said, if we are creating a new infrastructure for user authentication, we can follow the existing best practice to authenticate users. For a full example of authentication, follow [this example](), which uses [passport.js](http://www.passportjs.org/).
All of the approaches require that users be authenticated with the server. If our system already has login method setup to authenticate users and provide credentials that can be used in subsequent requests, we can use this same system to authenticate GraphQL requests. With that said, if we are creating a new infrastructure for user authentication, we can follow the existing best practice to authenticate users. For a full example of authentication, follow [this example](#auth-example), which uses [passport.js](http://www.passportjs.org/).

<h2>Schema Authorization</h2>

Expand Down

0 comments on commit d9590ee

Please sign in to comment.