femslash-city/models/profile_comment.rb

10 lines
239 B
Ruby
Raw Permalink Normal View History

class ProfileComment < Sequel::Model
one_to_one :event
many_to_one :site
many_to_one :actioning_site, :class => :Site
def after_create
self.event = Event.create site_id: site.id, actioning_site_id: actioning_site.id
end
end