7 lines
146 B
PHP
7 lines
146 B
PHP
<?php
|
|
header('Content-Type: application/json');
|
|
require_once __DIR__ . '/auth_helper.php';
|
|
|
|
logout_user();
|
|
echo json_encode(['success' => true]);
|