Files
mozo-backend/app/controllers/dashboard_controller.rb
T
2012-08-28 20:08:13 +02:00

25 lines
340 B
Ruby

class DashboardController < ApplicationController
before_filter :check_active_list_state, except: :home
def home
end
def demo_both
end
# Testing action
def select_qrcode
@tables = Table.all
render layout: 'phone'
end
def supplier_home
redirect_to active_orders_supplier_path(Supplier.first)
end
end