|
|
@ -1,8 +1,7 @@
|
|
|
|
# frozen_string_literal: true
|
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
|
|
|
|
class Auth::RegistrationsController < Devise::RegistrationsController
|
|
|
|
class Auth::RegistrationsController < Devise::RegistrationsController
|
|
|
|
layout 'auth'
|
|
|
|
layout :determine_layout
|
|
|
|
layout 'admin', only: [:edit]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
before_action :check_single_user_mode
|
|
|
|
before_action :check_single_user_mode
|
|
|
|
before_action :configure_sign_up_params, only: [:create]
|
|
|
|
before_action :configure_sign_up_params, only: [:create]
|
|
|
@ -31,4 +30,10 @@ class Auth::RegistrationsController < Devise::RegistrationsController
|
|
|
|
def check_single_user_mode
|
|
|
|
def check_single_user_mode
|
|
|
|
redirect_to root_path if Rails.configuration.x.single_user_mode
|
|
|
|
redirect_to root_path if Rails.configuration.x.single_user_mode
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def determine_layout
|
|
|
|
|
|
|
|
%w(edit update).include?(action_name) ? 'admin' : 'auth'
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|