mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-08 15:54:51 +00:00
Add ModeratedProfile model
This commit is contained in:
parent
80a4eff1f1
commit
bcf99d637f
1 changed files with 13 additions and 0 deletions
13
app/Models/ModeratedProfile.php
Normal file
13
app/Models/ModeratedProfile.php
Normal file
|
@ -0,0 +1,13 @@
|
|||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class ModeratedProfile extends Model
|
||||
{
|
||||
use HasFactory;
|
||||
|
||||
public $guarded = [];
|
||||
}
|
Loading…
Reference in a new issue