mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
7fbb919ce8
API CHANGE: Add DataList::newObject(), which creates a new object on that DataList. API CHANGE: RequestHandler::handleRequest() now needs to handle a $model argument, if you override it.
24 lines
469 B
PHP
24 lines
469 B
PHP
<?php
|
|
/**
|
|
* Simple wrapper to allow access to the live site via REST
|
|
*
|
|
* @package sapphire
|
|
* @subpackage integration
|
|
*/
|
|
class VersionedRestfulServer extends Controller {
|
|
|
|
static $allowed_actions = array(
|
|
'index'
|
|
);
|
|
|
|
function handleRequest($request, $model) {
|
|
$this->setModel($model);
|
|
Versioned::reading_stage('Live');
|
|
$restfulserver = new RestfulServer();
|
|
$response = $restfulserver->handleRequest($request, $model);
|
|
return $response;
|
|
}
|
|
}
|
|
|
|
?>
|