site

Website's source files.
git clone git://git.ryanmj.xyz/site.git
Log | Files | Refs | LICENSE

errors_controller.rb (167B)


      1 class ErrorsController < ApplicationController
      2 def not_found
      3    render status: :not_found
      4  end
      5 
      6  def internal_server
      7    render status: :internal_server_error
      8  end
      9 end