* Add overview of active sessions * Better display of browser/platform name * Improve how browser information is stored and displayed for sessions overview * Fix test
		
			
				
	
	
		
			50 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
# frozen_string_literal: true
 | 
						|
 | 
						|
class Auth::RegistrationsController < Devise::RegistrationsController
 | 
						|
  layout :determine_layout
 | 
						|
 | 
						|
  before_action :check_enabled_registrations, only: [:new, :create]
 | 
						|
  before_action :configure_sign_up_params, only: [:create]
 | 
						|
  before_action :set_sessions, only: [:edit, :update]
 | 
						|
 | 
						|
  def destroy
 | 
						|
    not_found
 | 
						|
  end
 | 
						|
 | 
						|
  protected
 | 
						|
 | 
						|
  def build_resource(hash = nil)
 | 
						|
    super(hash)
 | 
						|
    resource.locale = I18n.locale
 | 
						|
    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_enabled_registrations
 | 
						|
    redirect_to root_path if single_user_mode? || !Setting.open_registrations
 | 
						|
  end
 | 
						|
 | 
						|
  private
 | 
						|
 | 
						|
  def determine_layout
 | 
						|
    %w(edit update).include?(action_name) ? 'admin' : 'auth'
 | 
						|
  end
 | 
						|
 | 
						|
  def set_sessions
 | 
						|
    @sessions = current_user.session_activations
 | 
						|
  end
 | 
						|
end
 |