1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-12-01 12:24:28 +01:00
fab-manager/app/controllers/confirmations_controller.rb
2022-05-04 14:07:12 +02:00

10 lines
297 B
Ruby

# frozen_string_literal: true
# Devise controller to handle validation of email addresses
class ConfirmationsController < Devise::ConfirmationsController
# The path used after confirmation.
def after_confirmation_path_for(_resource_name, resource)
signed_in_root_path(resource)
end
end