mastodon/app/controllers/auth/registrations_controller.rb

25 lines
571 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class Auth::RegistrationsController < Devise::RegistrationsController
layout 'auth'
2016-09-29 21:28:21 +02:00
before_action :configure_sign_up_params, only: [:create]
protected
def build_resource(hash = nil)
super(hash)
2016-09-29 21:28:21 +02:00
resource.build_account if resource.account.nil?
end
def configure_sign_up_params
2016-08-17 17:56:23 +02:00
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