2016-07-22 20:00:27 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
class Logout extends Vn\Web\JsonRequest
|
|
|
|
{
|
2016-09-23 22:47:34 +00:00
|
|
|
function run ($db)
|
2016-07-22 20:00:27 +00:00
|
|
|
{
|
2016-09-24 14:32:31 +00:00
|
|
|
$this->service->logout ();
|
2016-07-22 20:00:27 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|