1
0
mirror of https://gitlab.com/animath/si/plateforme-corres2math.git synced 2024-12-26 22:22:20 +00:00
plateforme-corres2math/server_files/controllers/admins.php

8 lines
162 B
PHP
Raw Normal View History

2019-10-23 10:17:17 +00:00
<?php
if ($_SESSION["role"] != Role::ADMIN)
require_once "server_files/403.php";
$admins = User::getAdmins();
require_once "server_files/views/admins.php";