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/mod/post.php
2012-08-08 18:50:04 -07:00

28 lines
359 B
PHP

<?php
/**
* Zot endpoint
*/
require_once('include/zot.php');
function post_post(&$a) {
$ret = array('result' => false, 'message' => '');
$msgtype = ((x($_REQUEST,'type')) ? $_REQUEST['type'] : '');
if($msgtype === 'notify') {
// add to receive queue
// qreceive_add($_REQUEST);
$ret['result'] = true;
json_return_and_die($ret);
}
}