From b66665f13c85ced2aec6bb8bc24d43ef8b7a054a Mon Sep 17 00:00:00 2001 From: Griffin Hosseinzadeh <1976665+griffin-h@users.noreply.github.com> Date: Wed, 15 May 2024 14:03:51 -0400 Subject: [PATCH] update treasuremap URL to https --- tom_nonlocalizedevents/models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tom_nonlocalizedevents/models.py b/tom_nonlocalizedevents/models.py index 6da1c9b..0db2147 100644 --- a/tom_nonlocalizedevents/models.py +++ b/tom_nonlocalizedevents/models.py @@ -91,10 +91,10 @@ def treasuremap_url(self): """Construct and return the Treasure Map (treasuremap.space) URL for this nonlocalizedevent from the event_id Field. - for example: http://treasuremap.space/alerts?graceids=S200219ac + for example: https://treasuremap.space/alerts?graceids=S200219ac """ # TODO: add check that superevent_type is GRAVITATIONAL_WAVE - return f"http://treasuremap.space/alerts?graceids={self.event_id}" + return f"https://treasuremap.space/alerts?graceids={self.event_id}" @property def hermes_url(self):