Skip to content

Commit

Permalink
Merge branch 'main' into fix-redirects-for-in-progress-users
Browse files Browse the repository at this point in the history
  • Loading branch information
mwvolo authored Jan 26, 2024
2 parents 401c4a7 + 357546f commit 35704ee
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions config/initializers/omniauth.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,17 @@

provider :facebook, secrets[:facebook_app_id], secrets[:facebook_app_secret],
client_options: {
site: 'https://graph.facebook.com/v7.0',
authorize_url: "https://www.facebook.com/v7.0/dialog/oauth"
site: 'https://graph.facebook.com/v19.0',
authorize_url: "https://www.facebook.com/v19.0/dialog/oauth"
}

provider(
'facebooknewflow',
secrets[:facebook_app_id],
secrets[:facebook_app_secret],
client_options: {
site: 'https://graph.facebook.com/v7.0',
authorize_url: "https://www.facebook.com/v7.0/dialog/oauth"
site: 'https://graph.facebook.com/v19.0',
authorize_url: "https://www.facebook.com/v19.0/dialog/oauth"
}
)

Expand Down

0 comments on commit 35704ee

Please sign in to comment.