]> BookStack Code Mirror - bookstack/blob - app/Auth/SocialAccount.php
Fix pt_BR translations
[bookstack] / app / Auth / SocialAccount.php
1 <?php namespace BookStack\Auth;
2
3 use BookStack\Model;
4
5 class SocialAccount extends Model
6 {
7
8     protected $fillable = ['user_id', 'driver', 'driver_id', 'timestamps'];
9
10     public function user()
11     {
12         return $this->belongsTo(User::class);
13     }
14 }
Morty Proxy This is a proxified and sanitized view of the page, visit original site.