2018-09-25 12:30:50 +01:00
|
|
|
<?php namespace BookStack\Auth;
|
|
|
|
|
|
|
|
use BookStack\Model;
|
2015-09-04 20:40:36 +01:00
|
|
|
|
|
|
|
class SocialAccount extends Model
|
|
|
|
{
|
|
|
|
|
|
|
|
protected $fillable = ['user_id', 'driver', 'driver_id', 'timestamps'];
|
|
|
|
|
|
|
|
public function user()
|
|
|
|
{
|
2016-05-01 21:20:50 +01:00
|
|
|
return $this->belongsTo(User::class);
|
2015-09-04 20:40:36 +01:00
|
|
|
}
|
|
|
|
}
|