Skip to content

Commit

Permalink
fix webhook endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
jefer94 committed Oct 17, 2024
1 parent eb9cf55 commit 0e2a07e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion breathecode/authenticate/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@
path("user/me/invite", MeInviteView.as_view(), name="user_me_invite"),
path("user/me/invite/<slug:new_status>", MeInviteView.as_view(), name="user_me_invite_status"),
path("academy/settings", AcademyAuthSettingsView.as_view(), name="academy_settings"),
path("google_webhook", receive_google_webhook, name="google_webhook"),
path("google/webhook", receive_google_webhook, name="google_webhook"),
# google authentication oath2.0
path("google/callback", save_google_token, name="google_callback"),
path("google/<str:token>", get_google_token, name="google_token"),
Expand Down

0 comments on commit 0e2a07e

Please sign in to comment.