diff --git a/fusionauth/kickstart/kickstart.json b/fusionauth/kickstart/kickstart.json index cce38d8..67c286e 100644 --- a/fusionauth/kickstart/kickstart.json +++ b/fusionauth/kickstart/kickstart.json @@ -7,10 +7,7 @@ "defaultTenantId": "d7d09513-a3f5-401c-9685-34ab6c552453", "adminUsername": "admin", "adminPassword": "password", - "adminUserId": "00000000-0000-0000-0000-000000000001", - "username": "richard", - "userPassword": "password", - "userUserId": "00000000-0000-0000-0000-111111111111" + "adminUserId": "00000000-0000-0000-0000-000000000001" }, "apiKeys": [ { @@ -70,19 +67,6 @@ "password": "#{adminPassword}" } } - }, - { - "method": "POST", - "url": "/api/user/registration/#{userUserId}", - "body": { - "user": { - "username": "#{username}", - "password": "#{userPassword}" - }, - "registration": { - "applicationId": "#{applicationId}" - } - } } ] } diff --git a/services/auth-service/index.js b/services/auth-service/index.js index bbb6590..8a49726 100644 --- a/services/auth-service/index.js +++ b/services/auth-service/index.js @@ -66,6 +66,10 @@ app.use(cookieParser()); /** Decode Form URL Encoded data */ app.use(express.urlencoded({ extended: true })); +app.get('/auth/login', async (req, res, next) => { + res.send("WRONG PATH!"); +}); + app.get('/login', async (req, res, next) => { const tenant = `${req.query?.tenant}`; const clientId = `${req.query?.clientId}`; diff --git a/services/auth-service/version.txt b/services/auth-service/version.txt index 13637f4..3b9e5db 100644 --- a/services/auth-service/version.txt +++ b/services/auth-service/version.txt @@ -1 +1 @@ -v1.0.3 \ No newline at end of file +v1.0.4 \ No newline at end of file