Merge pull request #7 from jamal/develop

Catch RecordNotFound exception
This commit is contained in:
Jamal Fanaian 2014-10-11 20:22:06 -04:00
commit 15763ae538
3 changed files with 7 additions and 0 deletions

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>