about summary refs log tree commit diff
path: root/app/controllers/auth/registrations_controller.rb
blob: b7d019c2459a9e12fe9fdd0ca267e5857de438f3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# frozen_string_literal: true

class Auth::RegistrationsController < Devise::RegistrationsController
  layout 'auth'
  layout 'admin', only: [:edit]

  before_action :check_single_user_mode
  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

  def after_inactive_sign_up_path_for(_resource)
    new_user_session_path
  end

  def check_single_user_mode
    redirect_to root_path if Rails.configuration.x.single_user_mode
  end
end