Wednesday, July 15, 2026 2:02:15 AM
> errors_controller.rb
class ErrorsController < ApplicationController
  skip_before_action :authenticate_user!, raise: false
  skip_before_action :verify_authenticity_token

  def not_found
    render(status: 404)
  end

  def internal_server_error
    render(status: 500)
  end
end
All opinions represented herein are my own
- © 2024 - 2026 itsthedevman
- build 43aa0d7