mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 20:24:43 +08:00
23 lines
No EOL
485 B
Ruby
23 lines
No EOL
485 B
Ruby
class UserSubdomain
|
|
def self.matches?(request)
|
|
if ENV['USER_SUBDOMAIN']
|
|
return (request.subdomain.present? && request.subdomain == ENV['USER_SUBDOMAIN'])
|
|
else
|
|
return true
|
|
end
|
|
end
|
|
end
|
|
|
|
class WopiSubdomain
|
|
def self.matches?(request)
|
|
if ENV['WOPI_ENABLED'] == "true"
|
|
if ENV['WOPI_SUBDOMAIN']
|
|
return (request.subdomain.present? && request.subdomain == ENV['WOPI_SUBDOMAIN'])
|
|
else
|
|
return true
|
|
end
|
|
else
|
|
return false
|
|
end
|
|
end
|
|
end |