0
0
Fork 0
mirror of https://github.com/ENSL/ensl.org.git synced 2025-03-22 18:31:20 +00:00

Catch RecordNotFound exception

This commit is contained in:
jamal 2014-10-11 19:39:14 -04:00
parent 7852b616d6
commit 756da67058
3 changed files with 7 additions and 0 deletions
app
assets/javascripts
controllers
public

View file

@ -0,0 +1 @@
window.ENSL = Ember.Application.Create();

View file

@ -50,6 +50,10 @@ class ApplicationController < ActionController::Base
render text: t(:application_stale)
end
rescue_from ActiveRecord::RecordNotFound do |exception|
render :template => 'errors/404.html', :status => :not_found, :layout => 'errors'
end
private
def update_user

2
public/404.html Normal file
View file

@ -0,0 +1,2 @@
<h1>The page you were looking for doesn't exist.</h1>
<p>You may have mistyped the address or the page may have moved.</p>