Arthur Cheek
Results
2
comments of
Arthur Cheek
Is this available?
This was my hacky solution using the ruby gem. ```ruby def track_event(data) if data[:properties]["shop_id"] data[:shop_id] = data[:properties]["shop_id"] data[:properties].delete("shop_id") end super(data) end ``` I set the user_id (or shop id in...