14 lines
131 B
Ruby
14 lines
131 B
Ruby
class StaticPagesController < ApplicationController
|
|
def home
|
|
end
|
|
|
|
def help
|
|
end
|
|
|
|
def about
|
|
end
|
|
|
|
def contact
|
|
end
|
|
end
|