module Playbook

def self.web_page_within_mobile_app?(request)

Returns:
  • (Boolean) - indication of whether the request is a web view within Nitro Mobile
def self.web_page_within_mobile_app?(request)
  request.user_agent.try(:downcase) =~ /^nitro/
end