fix: cannot delete env with available services
This commit is contained in:
parent
2b3057e1b4
commit
4a84c7238a
1 changed files with 1 additions and 1 deletions
|
|
@ -14,7 +14,7 @@ class Environment extends Model
|
||||||
|
|
||||||
public function can_delete_environment()
|
public function can_delete_environment()
|
||||||
{
|
{
|
||||||
return $this->applications()->count() == 0 && $this->postgresqls()->count() == 0;
|
return $this->applications()->count() == 0 && $this->postgresqls()->count() == 0 && $this->services()->count() == 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function applications()
|
public function applications()
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue