Skip to content

Commit

Permalink
Added a POST route to the SSO routes to support SAML login callbacks (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
kasonde authored Aug 19, 2021
1 parent c3eff49 commit fb7f280
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ module.exports = {
path: '/connect/:provider',
handler: 'authentication.providerLogin',
},
{
method: 'POST',
path: '/connect/:provider',
handler: 'authentication.providerLogin',
},
{
method: 'GET',
path: '/providers/options',
Expand Down

0 comments on commit fb7f280

Please sign in to comment.