(int $panoramaId, int $groupId)
| 173 | } |
| 174 | |
| 175 | public function updateGroup(int $panoramaId, int $groupId): bool { |
| 176 | if (!$this->isOwn($panoramaId) || !$this->isValidParent($groupId, $panoramaId)) { |
| 177 | return false; |
| 178 | } |
| 179 | return $this->PanoramaMapper->updateGroup($panoramaId, $groupId); |
| 180 | } |
| 181 | |
| 182 | /** |
| 183 | * rename panorama |
nothing calls this directly
no test coverage detected