aboutsummaryrefslogtreecommitdiff
path: root/handler/admin/Logout.php
diff options
context:
space:
mode:
authorEvgeny Zinoviev <me@ch1p.io>2022-07-09 19:40:17 +0300
committerEvgeny Zinoviev <me@ch1p.io>2022-07-09 19:40:17 +0300
commitf7bfdf58def6aadc922e1632f407d1418269a0d7 (patch)
treed7a0b2819e6a26c11d40ee0b27267ea827fbb345 /handler/admin/Logout.php
initial
Diffstat (limited to 'handler/admin/Logout.php')
-rw-r--r--handler/admin/Logout.php17
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