Submit social housing lettings and sales data (CORE)
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
class ApplicationController < ActionController::Base |
|
def render_not_found |
|
render "errors/not_found", status: :not_found |
|
end |
|
|
|
def render_not_found_json(class_name, id) |
|
render json: { error: "#{class_name} #{id} not found" }, status: :not_found |
|
end |
|
end
|
|
|