summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorAzul <azul@riseup.net>2017-03-20 11:16:21 +0100
committerAzul <azul@riseup.net>2017-03-20 11:16:21 +0100
commita741152e33f6a681113818418ad0f898f2d04697 (patch)
tree897a279db2be8dcebe77f45b84b8d9c500766a7d /app
parent15de288c3ca9bacc3d45675878ee7b8a2d9fc935 (diff)
fix: 404 for missing pages template - fixes #9
Diffstat (limited to 'app')
-rw-r--r--app/controllers/pages_controller.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/controllers/pages_controller.rb b/app/controllers/pages_controller.rb
index b9c601a..4508450 100644
--- a/app/controllers/pages_controller.rb
+++ b/app/controllers/pages_controller.rb
@@ -9,6 +9,8 @@ class PagesController < ApplicationController
def show
@show_navigation = false
render page_name
+ rescue ActionView::MissingTemplate
+ raise ActionController::RoutingError.new('Not Found')
end
private