mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
10 lines
212 B
Ruby
10 lines
212 B
Ruby
class RegistrationController < BaseController
|
|
layout 'registration'
|
|
|
|
def index
|
|
if spree_current_user.nil?
|
|
redirect_to registration_auth_path(anchor: "login?after_login=/register")
|
|
end
|
|
end
|
|
end
|