Skip to content

Commit

Permalink
update auth-service
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabi-02 committed Jan 18, 2024
1 parent 1db310b commit 96976aa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions services/auth-service/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import cookieParser from 'cookie-parser';
import pkceChallenge from 'pkce-challenge';
import verify from 'jsonwebtoken';
import jwksClient from 'jwks-rsa';
import * as path from 'path';

// Add environment variables
import * as dotenv from "dotenv";
Expand Down Expand Up @@ -65,7 +64,7 @@ const client = new FusionAuthClient('noapikeyneeded', internalFusionAuthURL);

app.use(cookieParser());
/** Decode Form URL Encoded data */
app.use(express.urlencoded());
app.use(express.urlencoded({ extended: true }));

app.get('/login', async (req, res, next) => {
const tenant = `${req.query?.tenant}`;
Expand Down
2 changes: 1 addition & 1 deletion services/auth-service/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1.0.1
v1.0.2

0 comments on commit 96976aa

Please sign in to comment.