* Delete Dataset and all depending objects * * @param int $reportId * @return string * @throws Exception */
(int $reportId)
| 201 | * @throws Exception |
| 202 | */ |
| 203 | public function delete(int $reportId) { |
| 204 | $this->ActivityManager->triggerEvent($reportId, ActivityManager::OBJECT_PANORAMA, ActivityManager::SUBJECT_PANORAMA_DELETE); |
| 205 | $this->PanoramaMapper->delete($reportId); |
| 206 | return 'true'; |
| 207 | } |
| 208 | |
| 209 | /** |
| 210 | * get dataset by user |
nothing calls this directly
no test coverage detected