draig-car
Version:
Database REST API interactive generator CLI and REPL OpenAPI3 based JS generator with interactive ORM/ODM REPL
15 lines (11 loc) • 333 B
JavaScript
const debug = require('debug')('oauth:AuthHandler')
class AuthHandler {
static apiKey(req, scopes, schema) {
debug('In apiKey')
debug('api_key: "%s", authorized: "%s"',
req.headers['api_key'],
req.headers['api_key'] === 'special-key')
return req.headers['api_key'] === 'special-key'
}
}
module.exports = AuthHandler