diff options
author | Evgeny Zinoviev <me@ch1p.io> | 2022-07-09 19:40:17 +0300 |
---|---|---|
committer | Evgeny Zinoviev <me@ch1p.io> | 2022-07-09 19:40:17 +0300 |
commit | f7bfdf58def6aadc922e1632f407d1418269a0d7 (patch) | |
tree | d7a0b2819e6a26c11d40ee0b27267ea827fbb345 /handler/admin/Logout.php |
initial
Diffstat (limited to 'handler/admin/Logout.php')
-rw-r--r-- | handler/admin/Logout.php | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/handler/admin/Logout.php b/handler/admin/Logout.php new file mode 100644 index 0000000..bb11e43 --- /dev/null +++ b/handler/admin/Logout.php @@ -0,0 +1,17 @@ +<?php + +namespace handler\admin; + +use admin; +use csrf; +use Response; + +class Logout extends AdminRequestHandler { + + public function get(): Response { + csrf::check('logout'); + admin::unsetCookie(); + return new \RedirectResponse('/admin/login/'); + } + +}
\ No newline at end of file |