diff --git a/app/Models/User.php b/app/Models/User.php index 0204317e54..e206f06d38 100755 --- a/app/Models/User.php +++ b/app/Models/User.php @@ -166,11 +166,6 @@ class User extends SnipeModel implements AuthenticatableContract, CanResetPasswo return $this->belongsTo('\App\Models\Department', 'department_id'); } - public function isActivated() - { - return $this->activated ==1; - } - public function getFullNameAttribute() { return $this->first_name . " " . $this->last_name;