pixelfed/pixelfed

View on GitHub
app/UserSetting.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace App;

use Illuminate\Database\Eloquent\Model;

class UserSetting extends Model
{
    protected $fillable = ['user_id'];

    protected $casts = [
        'compose_settings' => 'json',
        'other' => 'json'
    ];
}