Skip to content

Commit

Permalink
fix: members link in emails
Browse files Browse the repository at this point in the history
  • Loading branch information
rohan-chaturvedi authored Oct 17, 2024
1 parent 70f70ba commit 0aded17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/api/emails.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def send_invite_email(invite):

def send_user_joined_email(invite, new_member):
organisation = invite.organisation.name
members_page_link = f"{os.getenv('ALLOWED_ORIGINS')}/{organisation}/members"
members_page_link = f"{os.getenv('ALLOWED_ORIGINS')}/{organisation}/access/members"

owner = OrganisationMember.objects.get(
organisation=invite.organisation, role__name="Owner", deleted_at=None
Expand Down

0 comments on commit 0aded17

Please sign in to comment.