Merge branch '2.3.x' into devel
This commit is contained in:
commit
cc69418215
29 changed files with 218 additions and 169 deletions
|
@ -45,6 +45,7 @@ class ApiController extends Zend_Controller_Action
|
|||
->addActionContext('push-stream-stats' , 'json')
|
||||
->addActionContext('update-stream-setting-table' , 'json')
|
||||
->addActionContext('update-replay-gain-value' , 'json')
|
||||
->addActionContext('update-cue-values-by-silan' , 'json')
|
||||
->initContext();
|
||||
}
|
||||
|
||||
|
@ -948,6 +949,10 @@ class ApiController extends Zend_Controller_Action
|
|||
|
||||
public function updateReplayGainValueAction()
|
||||
{
|
||||
// disable the view and the layout
|
||||
$this->view->layout()->disableLayout();
|
||||
$this->_helper->viewRenderer->setNoRender(true);
|
||||
|
||||
$request = $this->getRequest();
|
||||
$data = json_decode($request->getParam('data'));
|
||||
|
||||
|
@ -964,13 +969,13 @@ class ApiController extends Zend_Controller_Action
|
|||
|
||||
public function updateCueValuesBySilanAction()
|
||||
{
|
||||
// disable layout
|
||||
// disable the view and the layout
|
||||
$this->view->layout()->disableLayout();
|
||||
$this->_helper->viewRenderer->setNoRender(true);
|
||||
|
||||
|
||||
$request = $this->getRequest();
|
||||
$data = json_decode($request->getParam('data'));
|
||||
Logging::info($data);
|
||||
|
||||
foreach ($data as $pair) {
|
||||
list($id, $info) = $pair;
|
||||
// TODO : move this code into model -- RG
|
||||
|
@ -982,6 +987,8 @@ class ApiController extends Zend_Controller_Action
|
|||
$file->setDbSilanCheck(true);
|
||||
$file->save();
|
||||
}
|
||||
|
||||
echo json_encode(array());
|
||||
}
|
||||
|
||||
public function notifyWebstreamDataAction()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue