Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

changed default thirdparty callback uri #993

Merged
merged 1 commit into from
Dec 9, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions bugheist/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ SUPERUSER_PASSWORD=admi345n@12343453

DOMAIN_NAME=bughiest.com
PORT=80
CALLBACK_URL_FOR_GITHUB=http://127.0.0.1:8000/domain_name
CALLBACK_URL_FOR_GOOGLE=http://127.0.0.1:8000/domain_name
CALLBACK_URL_FOR_FACEBOOK=http://127.0.0.1:8000/domain_name
CALLBACK_URL_FOR_GITHUB=http://127.0.0.1:8000/
CALLBACK_URL_FOR_GOOGLE=http://127.0.0.1:8000/
CALLBACK_URL_FOR_FACEBOOK=http://127.0.0.1:8000/

6 changes: 3 additions & 3 deletions bugheist/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -451,13 +451,13 @@
DEFAULT_AUTO_FIELD = "django.db.models.AutoField"

CALLBACK_URL_FOR_GITHUB = os.environ.get(
"CALLBACK_URL_FOR_GITHUB", default="http://127.0.0.1:8000")
"CALLBACK_URL_FOR_GITHUB", default="https://www.bugheist.com/")

CALLBACK_URL_FOR_GOOGLE = os.environ.get(
"CALLBACK_URL_FOR_GOOGLE", default="http://127.0.0.1:8000")
"CALLBACK_URL_FOR_GOOGLE", default="https://www.bugheist.com/")

CALLBACK_URL_FOR_FACEBOOK = os.environ.get(
"CALLBACK_URL_FOR_FACEBOOK", default="http://127.0.0.1:8000")
"CALLBACK_URL_FOR_FACEBOOK", default="https://www.bugheist.com/")


# allow captcha bypass during test
Expand Down