Skip to content
This repository has been archived by the owner on Nov 9, 2023. It is now read-only.

Commit

Permalink
Change Params in Service (login an user) (#228)
Browse files Browse the repository at this point in the history
  • Loading branch information
elsiosanchez authored Sep 11, 2023
1 parent df81205 commit d835919
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ module.exports = ({ config }: ExtensionAPIFunctionParameter) => {
api.post('/login', (req, res) => {
if (req.body) {
service.runLoginOpenID({
codeParameter: req.body.code_parameter,
stateParameter: req.body.state_parameter,
codeParameter: req.body.code,
stateParameter: req.body.state,
language: req.body.language,
clientVersion: req.body.client_version
}, (err, response) => {
Expand Down

0 comments on commit d835919

Please sign in to comment.