Skip to content

Commit

Permalink
Merge pull request #82 from MGatner/login-deletes
Browse files Browse the repository at this point in the history
Disable soft deletes on LoginModel
  • Loading branch information
lonnieezell authored Aug 26, 2019
2 parents 545e1a8 + 42e8642 commit eba1ec7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Models/LoginModel.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class LoginModel extends Model
protected $primaryKey = 'id';

protected $returnType = 'object';
protected $useSoftDeletes = true;
protected $useSoftDeletes = false;

protected $allowedFields = [
'ip_address', 'email', 'user_id', 'date', 'success'
Expand Down

0 comments on commit eba1ec7

Please sign in to comment.