From 2f15861b0d43938d4a2c39d243dc0f52156a4e82 Mon Sep 17 00:00:00 2001 From: Owen Voke Date: Mon, 16 Sep 2024 12:18:21 +0100 Subject: [PATCH] fix: update assignee URL for Jira --- src/Configuration/Project.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Configuration/Project.php b/src/Configuration/Project.php index 21444b2d..936c37c6 100644 --- a/src/Configuration/Project.php +++ b/src/Configuration/Project.php @@ -89,7 +89,7 @@ public function jira(string $namespace, string $project): self { $this->issues = "https://{$namespace}.atlassian.net/browse/{$project}-%s"; - $this->assignees = "https://{$namespace}.atlassian.net/secure/ViewProfile?name=%s"; + $this->assignees = "https://{$namespace}.atlassian.net/secure/ViewProfile.jspa?name=%s"; return $this; }