Add gitWebhook method to Application model and fix

Dockerfile input display
This commit is contained in:
Andras Bacsai
2023-11-14 14:07:42 +01:00
parent 36d65ad5a8
commit 3a3c9448a4
2 changed files with 15 additions and 1 deletions

View File

@@ -85,6 +85,18 @@ class Application extends BaseModel
);
}
public function gitWebhook(): Attribute
{
return Attribute::make(
get: function () {
if (!is_null($this->source?->html_url) && !is_null($this->git_repository) && !is_null($this->git_branch)) {
return "{$this->source->html_url}/{$this->git_repository}/settings/hooks";
}
return $this->git_repository;
}
);
}
public function gitCommits(): Attribute
{
return Attribute::make(