From fa8dd219debc4f645a35fb3fbca872ca2164c618 Mon Sep 17 00:00:00 2001 From: Joseph Lozano Date: Tue, 11 Jun 2024 16:42:09 -0400 Subject: [PATCH] docs: Update Google OAuth Tutorial (#693) --- documentation/tutorials/google.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/documentation/tutorials/google.md b/documentation/tutorials/google.md index e6004e1..6cf9cf3 100644 --- a/documentation/tutorials/google.md +++ b/documentation/tutorials/google.md @@ -22,11 +22,10 @@ defmodule MyApp.Accounts.User do authentication do strategies do - oauth2 :google do + google do client_id MyApp.Secrets redirect_uri MyApp.Secrets - client_secret MyApp.Secrets end - base_url MyApp.Secrets + client_secret MyApp.Secrets end end end