ForestAdmin/forest-rails

View on GitHub
app/serializers/forest_liana/mixpanel_event_serializer.rb

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
module ForestLiana
  class MixpanelEventSerializer
    include ForestAdmin::JSONAPI::Serializer

    attribute :id
    attribute :event
    attribute :city
    attribute :region
    attribute :timezone
    attribute :os
    attribute :osVersion
    attribute :country
    attribute :date
    attribute :browser

    def self_link
      nil
    end

    def type
      @options[:context][:type] || 'mixpanel_events'
    end
  end
end