mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-22 06:21:27 +00:00
Update Profile model, cast last_status_at as timestamp
This commit is contained in:
parent
bdc3ab17dc
commit
a64aef6726
1 changed files with 2 additions and 1 deletions
|
@ -21,7 +21,8 @@ class Profile extends Model
|
||||||
|
|
||||||
protected $dates = [
|
protected $dates = [
|
||||||
'deleted_at',
|
'deleted_at',
|
||||||
'last_fetched_at'
|
'last_fetched_at',
|
||||||
|
'last_status_at'
|
||||||
];
|
];
|
||||||
protected $hidden = ['private_key'];
|
protected $hidden = ['private_key'];
|
||||||
protected $visible = ['id', 'user_id', 'username', 'name'];
|
protected $visible = ['id', 'user_id', 'username', 'name'];
|
||||||
|
|
Loading…
Reference in a new issue