add pdf viewer and test doemal

This commit is contained in:
Yan
2018-04-18 14:17:37 +06:30
parent 6889c879ec
commit c22fc3e86e
7 changed files with 26 additions and 7 deletions

View File

@@ -13,12 +13,12 @@ module TokenVerification
authenticate_token || render_unauthorized
end
def authenticate_token
def authenticate_token
authenticate_with_http_token do |token, options|
# Rails.logger.debug "token - " + token.to_s
if(options.length !=0 && options["from"] == "DOEMAL")
if(ENV["SERVER_MODE"] === "cloud")
from = request.subdomain.downcase + "." + request.domain.downcase
from = "local" #request.subdomain.downcase + "." + request.domain.downcase
aes = MyAesCrypt.new
return aes.checkKeyForAuth(from, token)
end