1
0
Fork 1
mirror of https://github.com/pixelfed/pixelfed.git synced 2024-12-21 23:32:39 +00:00

Update AccountLog model, add fillable attribute

This commit is contained in:
Daniel Supernault 2021-01-30 19:56:31 -07:00
parent 090b6d0336
commit 1ac60173af
No known key found for this signature in database
GPG key ID: 0DEF1C662C9033F7

View file

@ -6,6 +6,9 @@ use Illuminate\Database\Eloquent\Model;
class AccountLog extends Model
{
protected $fillable = ['*'];
public function user()
{
return $this->belongsTo(User::class);