* @license https://www.gnu.org/licenses/agpl-3.0.en.html/ GNU Affero General Public License v3.0 */ namespace App\Http\Controllers\API; use App\Models\Torrent; class BookmarkController extends BaseController { final public function store(int $torrentId): bool { auth()->user()->bookmarks()->attach($torrentId); Torrent::query()->whereKey($torrentId)->searchable(); return true; } final public function destroy(int $torrentId): bool { auth()->user()->bookmarks()->detach($torrentId); Torrent::query()->whereKey($torrentId)->searchable(); return false; } }