blob: a78b8b5adeef52689333a8d0d26269036ebce7cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
class ContentController < ApplicationController
def render_page
path = params[:pagepath].join('/')
@page = Node.find_page(path)
# Replace with real 404
render :status => 404 unless @page
end
end
|