Files

24 lines
488 B
PHP

<?php
/** @phpstan-var \Gazelle\User $Viewer */
declare(strict_types=1);
namespace Gazelle;
if (!$Viewer->permitted('site_forum_autosub')) {
json_error('forbidden');
}
authorize();
$forum = new Manager\Forum()->findById((int)($_POST['id'] ?? 0));
if (is_null($forum)) {
json_error('not found');
}
$active = (bool)$_POST['active'];
if ($forum->toggleAutoSubscribe($Viewer, $active)) {
json_print('success', ['autosub' => $active]);
} else {
json_error('unchanged');
}