Skip to content

Commit

Permalink
update user
Browse files Browse the repository at this point in the history
  • Loading branch information
BorisGautier committed Oct 2, 2023
1 parent 6a81235 commit f09d7d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Models/User.php
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ class User extends Authenticatable implements MustVerifyEmail, FilamentUser

public function canAccessFilament(): bool
{
return str_ends_with($this->email, '@francophonie.org') && $this->hasVerifiedEmail();
return str_ends_with($this->email, '@francophonie.org') || str_ends_with($this->email, '@ifdd.cm') && $this->hasVerifiedEmail();
}

public function oscs()
Expand Down

0 comments on commit f09d7d8

Please sign in to comment.