Fix user model.

This commit is contained in:
James Cole
2016-01-09 08:51:49 +01:00
parent 5e5fdfdd51
commit 05f8773fa0

View File

@@ -3,6 +3,7 @@
namespace FireflyIII; namespace FireflyIII;
use Illuminate\Foundation\Auth\User as Authenticatable; use Illuminate\Foundation\Auth\User as Authenticatable;
use Zizaco\Entrust\Traits\EntrustUserTrait;
/** /**
* Class User * Class User
@@ -11,6 +12,8 @@ use Illuminate\Foundation\Auth\User as Authenticatable;
*/ */
class User extends Authenticatable class User extends Authenticatable
{ {
use EntrustUserTrait;
/** /**
* The attributes that are mass assignable. * The attributes that are mass assignable.
* *