diff options
author | amurrel <amurrel@purdue.edu> | 2014-06-30 17:48:09 -0400 |
---|---|---|
committer | amurrel <amurrel@purdue.edu> | 2014-06-30 17:48:09 -0400 |
commit | 2ff464e00a47e1b0da3ce3bf4f0703f308cd06c5 (patch) | |
tree | fd1606679b51a5498a5f5edaeb0baac4e2ad1b06 /app | |
parent | 64c6c375776fcb94c9ae81cd64ee9b5ae8faa25f (diff) |
removed the checking for the captcha for now to allow new user creation.
Diffstat (limited to 'app')
-rw-r--r-- | app/controllers/users_controller.rb | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/app/controllers/users_controller.rb b/app/controllers/users_controller.rb index f4cb15c..ef94190 100644 --- a/app/controllers/users_controller.rb +++ b/app/controllers/users_controller.rb @@ -28,13 +28,13 @@ class UsersController < ApplicationController # POST /users.json def create @user = User.new(user_params) - unless (simple_captcha_valid?) - respond_to do |format| - format.html { render action: 'new', status: :unprocessable_entity } - format.json { render json: @user.errors, status: :unprocessable_entity } - end - return - end + #unless (simple_captcha_valid?) + # respond_to do |format| + # format.html { render action: 'new', status: :unprocessable_entity } + # format.json { render json: @user.errors, status: :unprocessable_entity } + # end + # return + #end respond_to do |format| if @user.save |