1
0
mirror of https://github.com/serghey-rodin/vesta.git synced 2025-03-12 04:36:25 -07:00
vesta/web/api/v1/list/index.php

9 lines
139 B
PHP
Raw Permalink Normal View History

2021-10-27 11:20:24 +03:00
<?php
session_start();
if (isset($_SESSION['user'])) {
header("Location: /list/user/");
} else {
header("Location: /login/");
}
?>