mirror of https://github.com/pixelfed/pixelfed
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
288 B
PHTML
19 lines
288 B
PHTML
|
8 years ago
|
<?php
|
||
|
|
|
||
|
4 weeks ago
|
namespace App\Models;
|
||
|
8 years ago
|
|
||
|
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
|
||
|
|
class UserSetting extends Model
|
||
|
|
{
|
||
|
4 weeks ago
|
protected $guarded = [];
|
||
|
5 years ago
|
|
||
|
7 months ago
|
protected function casts(): array
|
||
|
|
{
|
||
|
|
return [
|
||
|
|
'compose_settings' => 'json',
|
||
|
|
'other' => 'json',
|
||
|
|
];
|
||
|
|
}
|
||
|
8 years ago
|
}
|