hummingbird-me/kitsu-server

View on GitHub
app/controllers/error_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
D
66%
class ErrorController < ApplicationController
  def not_found
    render status: :not_found, json: {
      errors: [{
        status: 404,
        title: 'Route Not Found'
      }]
    }
  end
end