Adding new files (images, libraries and php files) for the project michelangelo

This commit is contained in:
Omar
2013-11-07 16:28:35 -04:00
parent a8c9748aa3
commit fe52c66595
44 changed files with 1316 additions and 2 deletions

View File

@@ -0,0 +1,14 @@
<?php
class FakeApi extends HttpProxyController
{
public function save() {
$json = new stdClass();
$json->success = true;
echo json_encode($json);
exit;
}
}