]>
BookStack Code Mirror - bookstack/blob - app/SocialAccount.php
projects
/
bookstack
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Started Social Auth Testing
[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
}