Skip to content

Instantly share code, notes, and snippets.

@sethvincent
Created April 7, 2015 20:44
Show Gist options
  • Save sethvincent/a38648e2afeb00c4c363 to your computer and use it in GitHub Desktop.
Save sethvincent/a38648e2afeb00c4c363 to your computer and use it in GitHub Desktop.
Server.prototype.authorize = function (req, res, cb) {
if (req.headers.authorization) return this.authorizeAPI(req, cb)
return this.authorizeSession(req, res, cb)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment