view app/controllers/application_controller.rb @ 501:e62e57101e4a

Remove outdated test script
author nanaya <me@nanaya.net>
date Mon, 16 Dec 2024 01:11:30 +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