KyivKrishnaAcademy/ved_akadem_students

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

Summary

Maintainability
A
0 mins
Test Coverage
B
85%
module Users
  class EmailsController < ApplicationController
    skip_before_action :authenticate_person!

    def create
      if verify_recaptcha
        @emails = HiddenEmail.collect_hidden_emails(params[:phone])
      else
        render :new
      end
    end
  end
end