gistflow/gistflow

View on GitHub
app/controllers/errors_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class ErrorsController < ApplicationController
  layout 'error'
  
  def not_found
    render :not_found, formats: ['html']
  end
end