This repository has been archived on 2024-08-19. You can view files and clone it, but cannot push or open issues or pull requests.
core/Zotlabs/Module/Pushcall.php
2016-04-18 20:38:38 -07:00

20 lines
237 B
PHP

<?php
namespace Zotlabs\Module;
class Pushcall extends \Zotlabs\Web\Controller {
function init() {
logger('pushcall: received');
$xml = file_get_contents('php://input');
logger('received: ' . $xml);
killme();
}
}