diff options
author | Azul <azul@leap.se> | 2014-05-06 09:50:46 +0200 |
---|---|---|
committer | Azul <azul@leap.se> | 2014-05-19 14:23:25 +0200 |
commit | b298cea527f74f682d24defee360e0f45f47d125 (patch) | |
tree | d2988d37c9d3bdb02d9e0b36eb1bc61ca0782f1f /app | |
parent | 8f9e6d294c78a4c3c2336ca4386fda3e20b2d365 (diff) |
little bit of documentation
Diffstat (limited to 'app')
-rw-r--r-- | app/controllers/errors_controller.rb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/app/controllers/errors_controller.rb b/app/controllers/errors_controller.rb index bf9329c..6c659e6 100644 --- a/app/controllers/errors_controller.rb +++ b/app/controllers/errors_controller.rb @@ -1,9 +1,10 @@ +# We render http errors ourselves so we can customize them class ErrorsController < ApplicationController - + # 404 def not_found end + # 500 def server_error end - end |