anthonymidili/Bullhorn

View on GitHub
app/controllers/users/registrations_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
# app/controllers/users/registrations_controller.rb

class Users::RegistrationsController < Devise::RegistrationsController
  def create
    if params[:body].present?
      return redirect_to root_path
    end
    super
  end
end