Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
3f2680671b
|
|||
|
fd06e17d7d
|
@@ -17,7 +17,7 @@ class PermissionMiddleware extends Middleware {
|
||||
req,
|
||||
reason,
|
||||
check,
|
||||
oauth_client_id: req.oauth.client.id,
|
||||
oauth_client_id: req.oauth.client.uuid,
|
||||
})
|
||||
|
||||
return res.status(401)
|
||||
|
||||
@@ -7,7 +7,7 @@ class APIRouteMiddleware extends Middleware {
|
||||
|
||||
async test(req, res, next, { allow_token = true, allow_user = true }) {
|
||||
// First, check if there is a user in the session.
|
||||
if ( allow_user && req.is_auth ) {
|
||||
if ( allow_user && req.user ) {
|
||||
return next()
|
||||
} else if ( allow_token ) {
|
||||
if ( !req.oauth ) req.oauth = {}
|
||||
|
||||
Reference in New Issue
Block a user