tap/app/controllers/static_pages_controller.rb

12 lines
135 B
Ruby
Raw Normal View History

2014-11-06 13:46:59 +00:00
class StaticPagesController < ApplicationController
def home
end
def overview
@users = User.all
end
def order
end
end