From 4975d1c647781d1b132edb0ed7c7613d52adafdc Mon Sep 17 00:00:00 2001 From: amurrel Date: Mon, 30 Jun 2014 18:12:44 -0400 Subject: slightly better --- app/controllers/users_controller.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/app/controllers/users_controller.rb b/app/controllers/users_controller.rb index ef94190..78ad0ba 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 (true) # 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 -- cgit v1.2.3