Update User model, add interstitial relation

This commit is contained in:
Daniel Supernault 2020-12-05 00:13:24 -07:00
parent 327ef1384b
commit bd321a72f0
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 5 additions and 0 deletions

View File

@ -88,4 +88,9 @@ class User extends Authenticatable
return $this->hasMany(AccountLog::class);
}
public function interstitials()
{
return $this->hasMany(AccountInterstitial::class);
}
}