fix post quote under protected forum

This commit is contained in:
xiaomlove
2023-04-20 02:08:09 +08:00
parent 1cd021e1c9
commit e5c91d40ce
5 changed files with 82 additions and 16 deletions

10
app/Models/ForumMod.php Normal file
View File

@@ -0,0 +1,10 @@
<?php
namespace App\Models;
class ForumMod extends NexusModel
{
protected $table = 'forummods';
protected $fillable = ['forumid', 'userid'];
}