mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-10 01:25:15 +00:00
Fix sign-up restrictions based on email addresses not being enforced (#28732)
This commit is contained in:
parent
8013d6c56d
commit
8cb4825c8b
|
@ -187,7 +187,7 @@ class User < ApplicationRecord
|
|||
|
||||
def confirm
|
||||
new_user = !confirmed?
|
||||
self.approved = true if open_registrations? && !sign_up_from_ip_requires_approval?
|
||||
self.approved = true if grant_approval_on_confirmation?
|
||||
|
||||
super
|
||||
|
||||
|
@ -206,7 +206,7 @@ class User < ApplicationRecord
|
|||
|
||||
def confirm!
|
||||
new_user = !confirmed?
|
||||
self.approved = true if open_registrations?
|
||||
self.approved = true if grant_approval_on_confirmation?
|
||||
|
||||
skip_confirmation!
|
||||
save!
|
||||
|
@ -426,6 +426,11 @@ class User < ApplicationRecord
|
|||
end
|
||||
end
|
||||
|
||||
def grant_approval_on_confirmation?
|
||||
# Re-check approval on confirmation if the server has switched to open registrations
|
||||
open_registrations? && !sign_up_from_ip_requires_approval? && !sign_up_email_requires_approval?
|
||||
end
|
||||
|
||||
def sign_up_from_ip_requires_approval?
|
||||
!sign_up_ip.nil? && IpBlock.where(severity: :sign_up_requires_approval).where('ip >>= ?', sign_up_ip.to_s).exists?
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue