UNPKG

294 BPlain TextView Raw
1class PagesController < ApplicationController
2 include HighVoltage::StaticPage
3
4 layout false
5
6 private
7
8 def page_finder
9 unless request.original_fullpath == '/'
10 dir_mode = (request.original_fullpath.ends_with?('/'))
11 end
12 MyPageFinder.new(params[:id], dir_mode)
13 end
14
15end