Commit 4dbb7f2b5925b57b7ed8d58fe5c6138404c22676

Authored by Victor Costa
1 parent 6c181fbb

Revert "Disable csrf verification"

This reverts commit b463f35095dcdf4f6dda4e897792b0a485a32dba.
Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
app/controllers/public/account_controller.rb
... ... @@ -6,7 +6,7 @@ class AccountController < ApplicationController
6 6 before_filter :redirect_if_logged_in, :only => [:login, :signup]
7 7 before_filter :protect_from_bots, :only => :signup
8 8  
9   - #protect_from_forgery except: [:login]
  9 + protect_from_forgery except: [:login]
10 10  
11 11 helper CustomFieldsHelper
12 12 # say something nice, you goof! something sweet.
... ...