Skip to content

Commit

Permalink
localhost -> 127.0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
garrettladley committed May 28, 2024
1 parent d9e7766 commit f3b445f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion backend/config/oauth_google.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ func (i *GoogleOAuthSettings) into() (*OAuthSettings, error) {
ClientSecret: secretClientSecret,
Scopes: "https://www.googleapis.com/auth/calendar.events https://www.googleapis.com/auth/calendar.readonly",
ResponseType: "code",
RedirectURI: "http://localhost:3000",
RedirectURI: "http://127.0.0.1:3000",
IncludeGrantedScopes: "true",
AccessType: "offline",
Prompt: "consent",
Expand Down
2 changes: 1 addition & 1 deletion backend/config/oauth_outlook.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ func (i *OutlookOAuthSettings) into() (*OAuthSettings, error) {
ClientSecret: secretClientSecret,
Scopes: "offline_access user.read calendars.readwrite",
ResponseType: "code",
RedirectURI: "http://localhost:3000",
RedirectURI: "http://127.0.0.1:3000",
ResponseMode: "query",
Prompt: "consent",
}, nil
Expand Down

0 comments on commit f3b445f

Please sign in to comment.