authenticity_token

How can I override the need for the authenticity_token or bypass it altogether? -Janna B

you can skip in in controller like this

skip_before_filter :verify_authenticity_token

Cheers! Arzumy

You can also set it by action

protect_from_forgery :except => :index