Sha256: 7f9c0f9e25b89409d2bbd185a180b65c9e2375113e2b4705a65af62921f5f305
Contents?: true
Size: 321 Bytes
Versions: 3
Compression:
Stored size: 321 Bytes
Contents
module CloseEncounters class ParticipantEvent < ApplicationRecord belongs_to :participant_service, inverse_of: :events, class_name: "CloseEncounters::ParticipantService", foreign_key: "close_encounters_participant_service_id" scope :newest, -> { order(created_at: :desc).limit(1) } end end
Version data entries
3 entries across 3 versions & 1 rubygems