Fix sign-up restrictions based on IP addresses not being enforced (#15607)
Fixes #15606 Co-authored-by: Claire <claire.github-309c@sitedethib.com>
This commit is contained in:
parent
4bd8dc09d8
commit
4b025cf7e6
1 changed files with 1 additions and 1 deletions
|
@ -152,7 +152,7 @@ class User < ApplicationRecord
|
||||||
|
|
||||||
def confirm
|
def confirm
|
||||||
new_user = !confirmed?
|
new_user = !confirmed?
|
||||||
self.approved = true if open_registrations?
|
self.approved = true if open_registrations? && !sign_up_from_ip_requires_approval?
|
||||||
|
|
||||||
super
|
super
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue