(int $datasetId, int $groupId)
| 215 | } |
| 216 | |
| 217 | public function updateGroup(int $datasetId, int $groupId): bool { |
| 218 | if (!$this->isOwn($datasetId)) { |
| 219 | return false; |
| 220 | } |
| 221 | $result = $this->DatasetMapper->updateGroup($datasetId, $groupId); |
| 222 | $this->ReportMapper->increaseVersionByDataset($datasetId); |
| 223 | return $result; |
| 224 | } |
| 225 | |
| 226 | /** |
| 227 | * rename dataset |
nothing calls this directly
no test coverage detected