cirandas.net

ref: master

app/controllers/public/not_found_controller.rb


1
2
3
4
5
6
7
8
9
class NotFoundController < ApplicationController
  def index
    render_not_found
  end

  def nothing
    render :nothing => true, :status => 404
  end
end