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