class RegistrationsController < Devise::RegistrationsController include ApplicationHelper #protected def new Apartment::Tenant.switch! end #Method to create a new User def create user_params = sign_up_params @user = User.new(user_params) if user_params[:password] == "" || user_params[:password_confirmation] == "" puts "NO PASSWORD ERROR" flash[:error] = "Need a password to sign up" redirect_to '/signin' return end if params[:company_serial] company = Company.find_by(company_token: params[:company_serial]) if company @user.company_id = company.id if company.company_name == "IVA" @user.admin = true end else flash[:alert] = "The serial key provided was invalid." redirect_to '/signin' end else flash[:alert] = "A company serial key must be provided to register." redirect_to '/signin' end if @user == "" flash[:alert] = "Please provide a password to register with." redirect_to '/signin' else @user.save begin sign_in @user rescue flash[:error] = "Email already in use" redirect_to '/signin' and return end if !@user.admin Apartment::Tenant.switch(Company.find(@user.company_id).company_name.gsub(/'/,'').gsub(/\s/,'')) end redirect_to "/pearlception" and return end end private #Param checking method for creation of a new user def sign_up_params params.require(:user).permit(:email, :password, :password_confirmation) end end