(request)
| 256 | }); |
| 257 | |
| 258 | const handler = (request) => request.auth.credentials; |
| 259 | server.route({ method: 'GET', path: '/a', handler, options: { auth: 'a' } }); |
| 260 | server.route({ method: 'GET', path: '/root', handler, options: { auth: 'root' } }); |
| 261 |