mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-09 00:15:05 +00:00
85b00d19b8
behaviour with Turbolinks enabled, optimizing Rabl for production
23 lines
531 B
Ruby
23 lines
531 B
Ruby
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
|
|
devise_parameter_sanitizer.for(:sign_up) do |u|
|
|
u.permit(:email, :password, :password_confirmation, account_attributes: [:username])
|
|
end
|
|
end
|
|
|
|
def after_sign_up_path_for(_resource)
|
|
root_path
|
|
end
|
|
end
|