6 lines
137 B
Ruby
6 lines
137 B
Ruby
class ErrorsController < ApplicationController
|
|
def not_found
|
|
head :not_found # Renders an empty body with 404 status [5]
|
|
end
|
|
end
|