core/api/admin/assets/demo/server/update-event.php

8 lines
177 B
PHP
Raw Normal View History

2022-12-11 13:55:49 +05:00
<?php
// this is our event
// We need to update it in the database
$event = $_POST['event'];
// but this is a test project so we return true
return true;
?>