14 lines
413 B
Ruby
14 lines
413 B
Ruby
class ApplicationRecord < ActiveRecord::Base
|
|
include Events::Types
|
|
self.abstract_class = true
|
|
|
|
# the models that exposed in email templates through liquid
|
|
DROPPABLES = %w[Account Channel Conversation Inbox User Message].freeze
|
|
|
|
# ModelDrop class should exist in app/drops
|
|
def to_drop
|
|
return unless DROPPABLES.include?(self.class.name)
|
|
|
|
"#{self.class.name}Drop".constantize.new(self)
|
|
end
|
|
end
|