chinwagsocial/app/controllers/auth/registrations_controller.rb
Eugen Rochko 33f7e1cf99 Shorten rendered links (strip protocol and www, truncate to 30 chars), redirect
to sign in page after sign up instead of root path which redirects to /about
2016-10-13 16:51:34 +02:00

23 lines
540 B
Ruby

class Auth::RegistrationsController < Devise::RegistrationsController
layout 'auth'
before_action :configure_sign_up_params, only: [:create]
protected
def build_resource(hash = nil)
super(hash)
resource.build_account if resource.account.nil?
end
def configure_sign_up_params
devise_parameter_sanitizer.permit(:sign_up) do |u|
u.permit({ account_attributes: [:username] }, :email, :password, :password_confirmation)
end
end
def after_sign_up_path_for(_resource)
new_user_session_path
end
end