Mercurial > zeropaste
view app/controllers/application_controller.rb @ 314:3c22d4acc2fa
Add basic controller test.
| author | edogawaconan <me@myconan.net> |
|---|---|
| date | Sat, 05 Apr 2014 23:08:49 +0900 |
| parents | dff632a63ada |
| children |
line wrap: on
line source
class ApplicationController < ActionController::Base protect_from_forgery before_action :filter_spam private def filter_spam head :ok if params[:url1].present? end end
