From dca7a7f2eba62f0186f3c4a0fa73f6e3b567e276 Mon Sep 17 00:00:00 2001 From: snipe Date: Fri, 29 Nov 2013 16:39:24 -0500 Subject: [PATCH] Allow deleted users --- app/models/LicenseSeat.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/LicenseSeat.php b/app/models/LicenseSeat.php index 3fe22b7f98..cb86bee5c6 100644 --- a/app/models/LicenseSeat.php +++ b/app/models/LicenseSeat.php @@ -11,7 +11,7 @@ class LicenseSeat extends Elegant { public function user() { - return $this->belongsTo('User','assigned_to'); + return $this->belongsTo('User','assigned_to')->withTrashed(); } } \ No newline at end of file