6 lines
98 B
Ruby
6 lines
98 B
Ruby
class StaticPagesController < ApplicationController
|
|
def show
|
|
render params[:page]
|
|
end
|
|
end
|