Add workflow name editing capability

[MAILPOET-4422]
This commit is contained in:
alex-mailpoet
2022-07-13 18:59:50 +03:00
committed by Jan Jakeš
parent 3bbb662857
commit 5ac27d125b
5 changed files with 49 additions and 4 deletions

View File

@@ -57,6 +57,10 @@ class Workflow {
return $this->name;
}
public function setName(string $name): void {
$this->name = $name;
}
public function getStatus(): string {
return $this->status;
}