Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ export function initAPIAuthorization(

// if there are no tags starting with "access:", just continue
if (actionTags.length === 0) {
logger.debug('API endpoint is not marked with "access:" tags, skipping.');
return toolkit.next();
}

Expand All @@ -34,11 +33,11 @@ export function initAPIAuthorization(

// we've actually authorized the request
if (checkPrivilegesResponse.hasAllRequested) {
logger.debug(`authorized for "${request.url.path}"`);
logger.debug(`User authorized for "${request.url.path}"`);
return toolkit.next();
}

logger.debug(`not authorized for "${request.url.path}"`);
logger.warn(`User not authorized for "${request.url.path}": responding with 404`);
return response.notFound();
});
}