Wrap user confirm method with writing role
This commit is contained in:
parent
88d8bd2816
commit
9666472105
|
@ -123,13 +123,15 @@ class User < ApplicationRecord
|
||||||
end
|
end
|
||||||
|
|
||||||
def confirm
|
def confirm
|
||||||
new_user = !confirmed?
|
ActiveRecord::Base.connected_to(role: :writing) do
|
||||||
self.approved = true if open_registrations?
|
new_user = !confirmed?
|
||||||
|
self.approved = true if open_registrations?
|
||||||
|
|
||||||
super
|
super
|
||||||
|
|
||||||
if new_user && approved?
|
if new_user && approved?
|
||||||
# prepare_new_user!
|
# prepare_new_user!
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue