This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-03-05 13:43:05 -08:00
|
|
|
class Auth::RegistrationsController < Devise::RegistrationsController
|
|
|
|
layout 'auth'
|
|
|
|
|
|
|
|
before_filter :configure_sign_up_params, only: [:create]
|
|
|
|
|
|
|
|
protected
|
|
|
|
|
|
|
|
def build_resource(hash = nil)
|
|
|
|
super(hash)
|
|
|
|
self.resource.build_account if self.resource.account.nil?
|
|
|
|
end
|
|
|
|
|
|
|
|
def configure_sign_up_params
|
2016-08-17 08:56:23 -07:00
|
|
|
devise_parameter_sanitizer.permit(:sign_up) do |u|
|
|
|
|
u.permit({ account_attributes: [:username] }, :email, :password, :password_confirmation)
|
2016-03-05 13:43:05 -08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-03-26 05:42:10 -07:00
|
|
|
def after_sign_up_path_for(_resource)
|
2016-03-21 09:18:30 -07:00
|
|
|
root_path
|
2016-03-05 13:43:05 -08:00
|
|
|
end
|
|
|
|
end
|