5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-07-04 17:15:46 +00:00
panel/app/controllers/concerns/exception_handler.rb

17 lines
326 B
Ruby
Raw Normal View History

# frozen_string_literal: true
# Gestiona las excepciones que lanzamos desde los controladores
module ExceptionHandler
extend ActiveSupport::Concern
class SiteNotFound < StandardError; end
included do
rescue_from SiteNotFound, with: :site_not_found
end
def site_not_found
redirect_to sites_path
end
end