Details
-
Type: Bug
-
Status: Closed
-
Priority: Major
-
Resolution: Fixed
-
Affects Version/s: 1.3.0
-
Fix Version/s: 1.5.0
-
Component/s: Account Service
-
Labels:None
Description
From email chain:
Without that pattern, any internal navigation a user does won’t get credited to the actual originating source.
That field should be filled in, I think a pattern like the following should do the trick:
^https?\:\/\/([\-_a-zA-Z0-9]+\.)*domain\.com\.au(\:[0-9]
{1,5})?([\?\/].*)?$
Where domain.com.au is the sites domain name – of course we could probably be more specific, e.g. if we know the subdomain will always be www, then get rid of the subdomain pattern, and the odds of us needing to worry about alternate port #’s is low too, so that could be pitched, leaving something like:
^https?\:\/\/www\.domain\.com\.au([\?\/].*)?$
This will require changes to the AccountService as it creates the site entries.