update action_controller

This commit is contained in:
Thein Lin Kyaw
2020-01-13 17:18:02 +06:30
parent 98d88218f2
commit f99defc459

View File

@@ -4,8 +4,8 @@ class ActionController::Base
private private
def lookup_domain def lookup_domain
if request.subdomain.present? && request.subdomain != "www" if request.subdomains.last && request.subdomains.last != "www" && ENV["SERVER_CODE"] = "cloud"
from = request.subdomain.downcase + "." + request.domain.downcase from = request.host
@license = cache_license(ENV["SX_PROVISION_URL"], from) # request.subdomain.downcase @license = cache_license(ENV["SX_PROVISION_URL"], from) # request.subdomain.downcase
if (!@license.nil?) if (!@license.nil?)
logger.info "Location - " + @license.dbschema logger.info "Location - " + @license.dbschema
@@ -20,11 +20,11 @@ class ActionController::Base
end end
else else
# check for license file # check for license file
# if check_license if check_license
# current_license(ENV["SX_PROVISION_URL"]) current_license(ENV["SX_PROVISION_URL"])
# else else
# redirect_to activate_path redirect_to activate_path
# end end
end end
end end