Skip to content

Commit

Permalink
fix: update project invitation URL to use HTTPS
Browse files Browse the repository at this point in the history
  • Loading branch information
Anuj-Gupta4 committed Dec 26, 2024
1 parent b6c6b8e commit a877e00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backend/app/projects/project_crud.py
Original file line number Diff line number Diff line change
Expand Up @@ -962,7 +962,7 @@ async def send_invitation_message(

project_url = f"{settings.FMTM_DOMAIN}/project/{project.id}"
if not project_url.startswith("http"):
project_url = f"http://{project_url}"
project_url = f"https://{project_url}"

message_content = dedent(f"""
You have been invited to join the project **{project.name}**.
Expand Down

0 comments on commit a877e00

Please sign in to comment.