mirror of
https://github.com/docusealco/docuseal.git
synced 2026-06-23 04:10:11 +00:00
21 lines
629 B
Ruby
21 lines
629 B
Ruby
# frozen_string_literal: true
|
|
|
|
class UsersSendResetPasswordController < ApplicationController
|
|
load_and_authorize_resource :user
|
|
|
|
LIMIT_DURATION = 10.minutes
|
|
|
|
def update
|
|
authorize!(:manage, @user)
|
|
|
|
if @user.reset_password_sent_at && @user.reset_password_sent_at > LIMIT_DURATION.ago
|
|
redirect_back fallback_location: settings_users_path, notice: I18n.t('email_has_been_sent_already')
|
|
else
|
|
@user.send_reset_password_instructions
|
|
|
|
redirect_back fallback_location: settings_users_path,
|
|
notice: I18n.t('an_email_with_password_reset_instructions_has_been_sent')
|
|
end
|
|
end
|
|
end
|