UX: detect DiscourseHub user agent in recently used devices

This commit is contained in:
Penar Musaraj 2019-04-16 13:50:47 -04:00
parent d2ea602bdd
commit cec0b580e6
2 changed files with 3 additions and 0 deletions

View File

@ -746,6 +746,7 @@ en:
opera: "Opera" opera: "Opera"
ie: "Internet Explorer" ie: "Internet Explorer"
edge: "Microsoft Edge" edge: "Microsoft Edge"
discoursehub: "DiscourseHub app"
unknown: "unknown browser" unknown: "unknown browser"
device: device:
android: "Android Device" android: "Android Device"

View File

@ -14,6 +14,8 @@ module BrowserDetection
:safari :safari
when /MSIE/i, /Trident/i when /MSIE/i, /Trident/i
:ie :ie
when /DiscourseHub/i
:discoursehub
else else
:unknown :unknown
end end