demarches-normaliennes/app/controllers/errors_controller.rb

10 lines
187 B
Ruby
Raw Normal View History

2024-03-28 09:45:05 +01:00
# frozen_string_literal: true
class ErrorsController < ApplicationController
def nav_bar_profile = try_nav_bar_profile_from_referrer
def not_found
render(status: 404)
end
end