aboutsummaryrefslogblamecommitdiffstats
path: root/Zotlabs/Module/Logout.php
blob: 6aa11d11087f4fbfc43eb294e59fe0a7b81903c6 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                                              
<?php

namespace Zotlabs\Module;

class Logout extends \Zotlabs\Web\Controller {

	function init() {
		\App::$session->nuke();
		goaway(z_root());

	}
}