0
0
Fork 0
mirror of https://github.com/ENSL/ensl.org.git synced 2025-04-21 08:20:51 +00:00

Merge pull request from jamal/develop

Catch RecordNotFound exception
This commit is contained in:
Jamal Fanaian 2014-10-11 20:22:06 -04:00
commit e69f55b409
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>