Skip to content

Commit

Permalink
heroku url
Browse files Browse the repository at this point in the history
  • Loading branch information
jnnchi committed Nov 2, 2024
1 parent 1a27c91 commit a6ac7a8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions backend/RattmWeb/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,5 @@
path('admin/', admin.site.urls),
path('transaction/', include('transaction.urls')),
path('esg/', include('esg.urls')),
path('login/', include('login.urls')),
]
2 changes: 1 addition & 1 deletion frontend/src/app/main-site/auth/SignInWithGoogle/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ function SendEmail(userEmail: string) {

const sendEmailToBackend = async (userEmail: string) => {
try {
const response = await fetch('http://localhost:8000/login/get_email/', {
const response = await fetch('https://rattm-f300025e7172.herokuapp.com/login/get_email/', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
Expand Down

0 comments on commit a6ac7a8

Please sign in to comment.