Skip to content

Commit

Permalink
fix(raid): url has protocol
Browse files Browse the repository at this point in the history
  • Loading branch information
GabDug committed Dec 27, 2023
1 parent 73664b3 commit ef9b314
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/firefighter/raid/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def get_absolute_url(self) -> str:

@property
def url(self) -> str:
return f"https://{settings.RAID_JIRA_API_URL}/browse/{self.key}"
return f"{settings.RAID_JIRA_API_URL}/browse/{self.key}"


class JiraTicketImpact(models.Model):
Expand Down

0 comments on commit ef9b314

Please sign in to comment.