tracker support authkey

This commit is contained in:
xiaomlove
2021-06-03 21:13:59 +08:00
parent 272b716f35
commit ed68efeeea
6 changed files with 117 additions and 20 deletions

View File

@@ -11,8 +11,6 @@ class NexusModel extends Model
public $timestamps = false;
// protected $perPage = 2;
/**
*
* @param \DateTimeInterface $date

View File

@@ -0,0 +1,8 @@
<?php
namespace App\Models;
class TorrentSecret extends NexusModel
{
protected $fillable = ['uid', 'torrent_id', 'secret'];
}