]> BookStack Code Mirror - bookstack/blob - app/SocialAccount.php
Found the source of the issue, not sure how to fix
[bookstack] / app / SocialAccount.php
1 <?php
2
3 namespace BookStack;
4
5 use Illuminate\Database\Eloquent\Model;
6
7 class SocialAccount extends Model
8 {
9
10     protected $fillable = ['user_id', 'driver', 'driver_id', 'timestamps'];
11
12     public function user()
13     {
14         return $this->belongsTo('BookStack\User');
15     }
16 }