12 lines
330 B
Ruby
12 lines
330 B
Ruby
class RegistrationsController < Devise::RegistrationsController
|
|
prepend_before_action :require_no_authentication, only: []
|
|
# No authorization required for public registration route
|
|
|
|
def new
|
|
if user_signed_in?
|
|
redirect_to "/dashboard?signed-in-already&t=#{Time.current.to_i}"
|
|
else
|
|
super
|
|
end
|
|
end
|
|
end
|