|
|
@ -125,6 +125,7 @@ class User < ApplicationRecord
|
|
|
|
|
|
|
|
|
|
|
|
def confirm
|
|
|
|
def confirm
|
|
|
|
new_user = !confirmed?
|
|
|
|
new_user = !confirmed?
|
|
|
|
|
|
|
|
self.approved = true if open_registrations?
|
|
|
|
|
|
|
|
|
|
|
|
super
|
|
|
|
super
|
|
|
|
|
|
|
|
|
|
|
@ -137,6 +138,7 @@ class User < ApplicationRecord
|
|
|
|
|
|
|
|
|
|
|
|
def confirm!
|
|
|
|
def confirm!
|
|
|
|
new_user = !confirmed?
|
|
|
|
new_user = !confirmed?
|
|
|
|
|
|
|
|
self.approved = true if open_registrations?
|
|
|
|
|
|
|
|
|
|
|
|
skip_confirmation!
|
|
|
|
skip_confirmation!
|
|
|
|
save!
|
|
|
|
save!
|
|
|
@ -264,7 +266,11 @@ class User < ApplicationRecord
|
|
|
|
private
|
|
|
|
private
|
|
|
|
|
|
|
|
|
|
|
|
def set_approved
|
|
|
|
def set_approved
|
|
|
|
self.approved = Setting.registrations_mode == 'open' || invited?
|
|
|
|
self.approved = open_registrations? || invited?
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def open_registrations?
|
|
|
|
|
|
|
|
Setting.registrations_mode == 'open'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
def sanitize_languages
|
|
|
|
def sanitize_languages
|
|
|
|