Sha256: bb49bdc5e3a3bbbbe29b2964a5729e946cae912b88ff4dbd578cfc3ec3f3efb1
Contents?: true
Size: 1.02 KB
Versions: 13
Compression:
Stored size: 1.02 KB
Contents
module Lanes module API module Updates @relaying_messages = false def self.user_info_for_change(model) if model.has_attribute?(:updated_by_id) model.updated_by.as_json(only:[:id,:name,:email]) else {} end end def self.relay! if @relaying_messages raise "Already relaying messages, calling relay! twice will lead to message duplication" end @relaying_messages = true Lanes::Model.observe(:save) do |model| if model.changes.any? path = "/#{model.class.api_path}/#{model.id}" Lanes::API::PubSub.publish(path, { by: self.user_info_for_change(model), update: model.changes }) end end end end end end
Version data entries
13 entries across 13 versions & 1 rubygems