10 lines
178 B
Ruby
10 lines
178 B
Ruby
class BaseCrmController < ActionController::Base
|
|
include LoginVerification
|
|
layout "CRM"
|
|
|
|
#before_action :check_installation
|
|
protect_from_forgery with: :exception
|
|
|
|
|
|
end
|