API: torrents upload/list

This commit is contained in:
xiaomlove
2025-04-17 01:39:40 +07:00
parent 0d3a46231d
commit 2b029eba10
72 changed files with 2332 additions and 507 deletions

12
app/Models/SiteLog.php Normal file
View File

@@ -0,0 +1,12 @@
<?php
namespace App\Models;
class SiteLog extends NexusModel
{
protected $table = 'sitelog';
protected $fillable = ['added', 'txt', 'security_level', 'uid'];
}