hugopl/reviewit

View on GitHub
app/controllers/errors_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class ErrorsController < ApplicationController
  skip_before_action :authenticate_user!

  def show
    @code = params[:id]
    render status: @code
  end
end