Files
sx-fc/app/controllers/base_waiter_controller.rb
Thein Lin Kyaw 1607cb70d3 Single database for multiple shops
Use ActsAsTenant as Multi-tenancy for shops

See below files:
- app/controllers/concern/multi_tenancy.rb
- app/models/application_record.rb
- app/models/shop.rb

An initializer can be created to control option in ActsAsTenant.

config/initializers/acts_as_tenant.rb
require 'acts_as_tenant/sidekiq'

ActsAsTenant.configure do |config|
  config.require_tenant = false # true
end

more detail: https://github.com/ErwinM/acts_as_tenant
2019-12-02 18:02:39 +06:30

16 lines
308 B
Ruby
Executable File

class BaseWaiterController < ActionController::Base
include LoginVerification, MultiTenancy
layout "waiter"
before_action :check_user
#before_action :check_installation
protect_from_forgery with: :exception
def check_user
if current_user.nil?
redirect_to root_path
end
end
end