mirror of https://github.com/docusealco/docuseal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
359 B
20 lines
359 B
# frozen_string_literal: true
|
|
|
|
class PasswordsController < Devise::PasswordsController
|
|
class Current < ActiveSupport::CurrentAttributes
|
|
attribute :user
|
|
end
|
|
|
|
def create
|
|
super do |resource|
|
|
resource.errors.clear unless Docuseal.multitenant?
|
|
end
|
|
end
|
|
|
|
def update
|
|
super do |resource|
|
|
Current.user = resource
|
|
end
|
|
end
|
|
end
|