docbrown/app/models/ahoy/event.rb
Jacob Herrington 03465e8882
Add rake task to collect admin overview metrics (#13023)
* Add rake task to collect admin overview metrics

* Print the Forem Instance domain
2021-03-24 14:16:46 -05:00

12 lines
262 B
Ruby

module Ahoy
class Event < ApplicationRecord
include Ahoy::QueryMethods
self.table_name = "ahoy_events"
belongs_to :visit
belongs_to :user, optional: true
scope :overview_link_clicks, -> { where(name: "Overview Link Clicked") }
end
end