Adding project groups

This commit is contained in:
Dan Cryer 2015-10-08 16:33:01 +01:00
commit 522eaef825
18 changed files with 695 additions and 72 deletions

View file

@ -89,6 +89,10 @@ class ProjectService
$project->setBranch($options['branch']);
}
if (array_key_exists('group', $options)) {
$project->setGroup($options['group']);
}
// Allow certain project types to set access information:
$this->processAccessInformation($project);