diff options
author | redmatrix <git@macgirvin.com> | 2016-04-18 20:38:38 -0700 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-04-18 20:38:38 -0700 |
commit | 2a4e8972e0edfa3156d9ce54d68ce0e54c0ec289 (patch) | |
tree | 2376d950ba2bdc7753336a3e2b94865c95c238f2 /Zotlabs/Module/Post.php | |
parent | 2a61817bad96526994c0499f1fc0a843a9cc9405 (diff) | |
download | volse-hubzilla-2a4e8972e0edfa3156d9ce54d68ce0e54c0ec289.tar.gz volse-hubzilla-2a4e8972e0edfa3156d9ce54d68ce0e54c0ec289.tar.bz2 volse-hubzilla-2a4e8972e0edfa3156d9ce54d68ce0e54c0ec289.zip |
module updates
Diffstat (limited to 'Zotlabs/Module/Post.php')
-rw-r--r-- | Zotlabs/Module/Post.php | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/Zotlabs/Module/Post.php b/Zotlabs/Module/Post.php new file mode 100644 index 000000000..af231ab50 --- /dev/null +++ b/Zotlabs/Module/Post.php @@ -0,0 +1,36 @@ +<?php +namespace Zotlabs\Module; + +/** + * @file mod/post.php + * + * @brief Zot endpoint. + * + */ + +require_once('include/zot.php'); + + +class Post extends \Zotlabs\Web\Controller { + + function init() { + + if (array_key_exists('auth', $_REQUEST)) { + $x = new \Zotlabs\Zot\Auth($_REQUEST); + exit; + } + + } + + + function post() { + + $z = new \Zotlabs\Zot\Receiver($_REQUEST['data'],get_config('system','prvkey'), new \Zotlabs\Zot\ZotHandler()); + + // notreached; + + exit; + + } + +} |