Refactor gitCommitLink method in Application model

This commit is contained in:
Andras Bacsai
2024-05-17 13:40:28 +02:00
parent edc3b014cd
commit ed9b63520d
4 changed files with 3 additions and 6 deletions

View File

@@ -199,9 +199,6 @@ class Application extends BaseModel
}
if (strpos($this->git_repository, 'git@') === 0) {
$git_repository = str_replace(['git@', ':', '.git'], ['', '/', ''], $this->git_repository);
if (str($this->source->html_url)->contains('bitbucket')) {
return "https://{$git_repository}/commits/{$link}";
}
return "https://{$git_repository}/commit/{$link}";
}
return $this->git_repository;