We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 96f19f9 commit cb8dc4eCopy full SHA for cb8dc4e
1 file changed
server/src/routes/Authorize.ts
@@ -13,7 +13,7 @@ const BENE_DENIED_ACCESS = 'access_denied';
13
export async function authorizationCallback(req: Request, res: Response) {
14
try {
15
16
- if (req.quey.error === BENE_DENIED_ACCESS) {
+ if (req.query.error === BENE_DENIED_ACCESS) {
17
const loggedInUser = getLoggedInUser(db);
18
// clear all saved claims data since the bene has denied access for the application
19
clearBB2Data(loggedInUser);
0 commit comments