ministryofjustice/Claim-for-Crown-Court-Defence

View on GitHub
app/models/google_analytics/ga_data_adapter.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
module GoogleAnalytics
  class GADataAdapter < DataAdapter
    def templates
      {
        virtual_page: { hitType: 'pageview', page: '%{url}', title: '%{title}' }
      }.freeze
    end

    def to_s
      "ga('send', #{template_data.to_json});"
    end
  end
end