tap/app/controllers/static_pages_controller.rb
2014-11-06 14:46:59 +01:00

12 lines
135 B
Ruby

class StaticPagesController < ApplicationController
def home
end
def overview
@users = User.all
end
def order
end
end