SAAS-404: Separate the Airtime API version from the Airtime version

* Airtime PHP side can be version bumped without pypo freaking out now
This commit is contained in:
Albert Santoni 2014-02-14 16:22:15 -05:00
parent a9cb71e248
commit 86dafaf61c
2 changed files with 18 additions and 14 deletions

View file

@ -65,7 +65,8 @@ class ApiController extends Zend_Controller_Action
public function versionAction()
{
$this->_helper->json->sendJson( array(
"version" => Application_Model_Preference::GetAirtimeVersion()));
"airtime_version" => Application_Model_Preference::GetAirtimeVersion(),
"api_version" => AIRTIME_API_VERSION));
}
/**