10 lines
182 B
Ruby
10 lines
182 B
Ruby
class BaseWaiterController < ActionController::Base
|
|
include LoginVerification
|
|
layout "waiter"
|
|
|
|
#before_action :check_installation
|
|
protect_from_forgery with: :exception
|
|
|
|
|
|
end
|