scube-server/app/controllers/api/errors_controller.rb
2015-05-01 20:07:18 +00:00

8 lines
118 B
Ruby

module API
class ErrorsController < ApplicationController
def not_found
head :not_found
end
end
end