Skip to content

Commit

Permalink
fix(okta): fix auth URL (#2651)
Browse files Browse the repository at this point in the history
- Fix Okta Authorize URL
  • Loading branch information
jdenquin authored Oct 2, 2024
1 parent b2a3784 commit 3c2cab5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/services/auth/okta/authorize_service.rb
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def call
}
result.url = URI::HTTPS.build(
host: "#{result.okta_integration.organization_name.downcase}.okta.com",
path: '/oauth2/default/v1/authorize',
path: '/oauth2/v1/authorize',
query: params.to_query
).to_s

Expand Down

0 comments on commit 3c2cab5

Please sign in to comment.