mirror of
https://github.com/fullstack-cash/bch-api.git
synced 2026-09-22 01:02:05 -07:00
Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4d3adab9e0 | ||
|
|
91f06b6311 | ||
|
|
2fc175d818 | ||
|
|
731861cb1d | ||
|
|
9a01f5ffe6 | ||
|
|
c62c515474 |
@@ -21,7 +21,7 @@ const getTokenFromHeaders = (req, res, next) => {
|
||||
if (authStr.split(' ')[0] === 'Token') {
|
||||
const token = authStr.split(' ')[1]
|
||||
|
||||
// console.log(`JWT found: ${token}`)
|
||||
console.log(`JWT found: ${token}`)
|
||||
|
||||
// Create the req.locals property if it does not yet exist.
|
||||
if (!req.locals) {
|
||||
|
||||
@@ -221,7 +221,9 @@ class RateLimits {
|
||||
// should be returned by the middleware.
|
||||
async trackRateLimits (req, res, jwtToken) {
|
||||
const debugInfo = {
|
||||
jwtToken
|
||||
jwtToken,
|
||||
userObj: req.body.usrObj,
|
||||
locals: req.locals
|
||||
}
|
||||
|
||||
// Anonymous rate limits are used by default.
|
||||
|
||||
Reference in New Issue
Block a user