Added a tab "Build" to project info page, where you can see how often you can build this project.

This commit is contained in:
Jan Böhmer 2023-01-18 23:07:51 +01:00
parent 6423e52092
commit 76ec63e760
10 changed files with 386 additions and 2 deletions

View file

@ -29,6 +29,9 @@ class ProjectBuildPartHelper
//Add a tag to the part that indicates that it is a build part
$part->setTags('project-build');
//Associate the part with the project
$project->setBuildPart($part);
return $part;
}
}