Skip to content

Commit

Permalink
risk profile column added in user model
Browse files Browse the repository at this point in the history
  • Loading branch information
hafijul233 committed Nov 5, 2024
1 parent d525b48 commit d570873
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Models/User.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
namespace Fintech\Auth\Models;

use Fintech\Auth\Traits\TransactionRelations;
use Fintech\Core\Enums\Auth\RiskProfile;
use Fintech\Core\Traits\BlameableTrait;
use Illuminate\Database\Eloquent\Collection;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
Expand Down Expand Up @@ -54,6 +55,7 @@ class User extends Authenticatable implements HasMedia, Auditable
'logged_in_at' => 'datetime',
'logged_out_at' => 'datetime',
'wrong_password' => 'integer',
'risk_profile' => RiskProfile::class,
];

protected $attributes = [
Expand Down

0 comments on commit d570873

Please sign in to comment.