mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-09 16:24:51 +00:00
Update User, fix last_active_at guard
This commit is contained in:
parent
45b9404ec1
commit
0b90d629d5
1 changed files with 8 additions and 1 deletions
|
@ -31,7 +31,14 @@ class User extends Authenticatable
|
||||||
* @var array
|
* @var array
|
||||||
*/
|
*/
|
||||||
protected $fillable = [
|
protected $fillable = [
|
||||||
'name', 'username', 'email', 'password', 'app_register_ip', 'email_verified_at', 'register_source'
|
'name',
|
||||||
|
'username',
|
||||||
|
'email',
|
||||||
|
'password',
|
||||||
|
'app_register_ip',
|
||||||
|
'email_verified_at',
|
||||||
|
'last_active_at',
|
||||||
|
'register_source'
|
||||||
];
|
];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue