CC-5806: Airtime Analyzer: Please implement "remove all files"

This commit is contained in:
drigato 2014-04-29 16:06:25 -04:00
parent 04da9b3d61
commit a5eb5e9901
3 changed files with 47 additions and 1 deletions

View file

@ -23,5 +23,15 @@ class Rest_Bootstrap extends Zend_Application_Module_Bootstrap
)
);
$router->addRoute('download', $downloadRoute);
$clearLibraryRoute = new Zend_Controller_Router_Route(
'rest/media/clear',
array(
'controller' => 'media',
'action' => 'clear',
'module' => 'rest'
)
);
$router->addRoute('clear', $clearLibraryRoute);
}
}
}