* Delete Dataset and all depending objects * * @param int $reportId * @return string * @throws Exception */
(int $reportId)
| 185 | * @throws Exception |
| 186 | */ |
| 187 | public function delete(int $reportId) { |
| 188 | $this->ActivityManager->triggerEvent($reportId, ActivityManager::OBJECT_PANORAMA, ActivityManager::SUBJECT_PANORAMA_DELETE); |
| 189 | $this->PanoramaMapper->delete($reportId); |
| 190 | return 'true'; |
| 191 | } |
| 192 | |
| 193 | /** |
| 194 | * get dataset by user |
nothing calls this directly
no test coverage detected