]> BookStack Code Mirror - bookstack/blob - app/Auth/SocialAccount.php
Re-structured the app code to be feature based rather than code type based
[bookstack] / app / Auth / SocialAccount.php
1 <?php namespace BookStack\Auth;
2
3 use BookStack\Auth\User;
4 use BookStack\Model;
5
6 class SocialAccount extends Model
7 {
8
9     protected $fillable = ['user_id', 'driver', 'driver_id', 'timestamps'];
10
11     public function user()
12     {
13         return $this->belongsTo(User::class);
14     }
15 }