Skip to content

Instantly share code, notes, and snippets.

View AlekseyPn's full-sized avatar
👨‍💻
Not time to rest

_fargustian AlekseyPn

👨‍💻
Not time to rest
  • Berlin
View GitHub Profile
@AhmedNadar
AhmedNadar / application_controller.rb
Last active November 30, 2023 00:43
How to redirect to a 404 in Rails?
# app/controllers/application_controller.rb
class ApplicationController < ActionController::Base
def not_found
raise ActionController::RoutingError.new('Not Found')
rescue
render_404
end