Files
mozo-backend/app/controllers/dashboard_controller.rb
T

21 lines
316 B
Ruby

class DashboardController < ApplicationController
before_filter :check_active_list_state, except: :home
def home
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