logout.path.php 182 B

123456789
  1. <?php
  2. Router::paths(array(
  3. '/logout'=>function($res,$args){
  4. Bugs::logout();
  5. // Manual header to fix issue
  6. $res->header('Location',Router::url(Router::$base));
  7. }
  8. ));
  9. ?>