2016-11-15 17:56:29 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-03-05 23:43:05 +02:00
|
|
|
class Auth::RegistrationsController < Devise::RegistrationsController
|
|
|
|
layout 'auth'
|
|
|
|
|
2016-09-29 22:28:21 +03:00
|
|
|
before_action :configure_sign_up_params, only: [:create]
|
2016-03-05 23:43:05 +02:00
|
|
|
|
|
|
|
protected
|
|
|
|
|
|
|
|
def build_resource(hash = nil)
|
|
|
|
super(hash)
|
2016-09-29 22:28:21 +03:00
|
|
|
resource.build_account if resource.account.nil?
|
2016-03-05 23:43:05 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def configure_sign_up_params
|
2016-08-17 18:56:23 +03:00
|
|
|
devise_parameter_sanitizer.permit(:sign_up) do |u|
|
|
|
|
u.permit({ account_attributes: [:username] }, :email, :password, :password_confirmation)
|
2016-03-05 23:43:05 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-03-26 14:42:10 +02:00
|
|
|
def after_sign_up_path_for(_resource)
|
2016-10-13 17:49:52 +03:00
|
|
|
new_user_session_path
|
2016-03-05 23:43:05 +02:00
|
|
|
end
|
|
|
|
end
|