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

Update StatusHashtag model, add status_visibility to $fillable

This commit is contained in:
Daniel Supernault 2019-07-07 23:31:19 -06:00
parent a0eb1f1906
commit 39e58f60a2
No known key found for this signature in database
GPG key ID: 0DEF1C662C9033F7

View file

@ -9,7 +9,8 @@ class StatusHashtag extends Model
public $fillable = [
'status_id',
'hashtag_id',
'profile_id'
'profile_id',
'status_visibility'
];
public function status()