summaryrefslogtreecommitdiffhomepage
path: root/app/controllers/api
diff options
context:
space:
mode:
author_Tradam <[email protected]>2024-06-16 18:27:19 -0400
committer_Tradam <[email protected]>2024-06-16 18:27:19 -0400
commit03adc15035fa9b9136a20f6ddbc882032bf75a3b (patch)
treec6a96017c083071f35349c9eb4c6f13572d327e6 /app/controllers/api
parentdc387a78548a152d0abea002c8afd86b71e5468a (diff)
downloadgameHolster-03adc15035fa9b9136a20f6ddbc882032bf75a3b.tar.gz
gameHolster-03adc15035fa9b9136a20f6ddbc882032bf75a3b.zip
update auth redirect
Diffstat (limited to 'app/controllers/api')
-rw-r--r--app/controllers/api/v1/auth_controller.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/controllers/api/v1/auth_controller.rb b/app/controllers/api/v1/auth_controller.rb
index 34663b1..a840d26 100644
--- a/app/controllers/api/v1/auth_controller.rb
+++ b/app/controllers/api/v1/auth_controller.rb
@@ -50,7 +50,8 @@ class Api::V1::AuthController < ApplicationController
user.access_token_digest = access_token_digest
user.user_name = user_data["login"]
user.save
- redirect_to 'http://localhost:5173/', allow_other_host: true
+ #redirect_to 'http://localhost:5173/', allow_other_host: true
+ redirect_to 'https://malcz.com/', allow_other_host: true
end
private