vesta/web/api/v1/list/index.php
2021-10-27 11:20:24 +03:00

9 lines
139 B
PHP

<?php
session_start();
if (isset($_SESSION['user'])) {
header("Location: /list/user/");
} else {
header("Location: /login/");
}
?>