activitypub-academy/app/lib/activity_log_publisher.rb

11 lines
189 B
Ruby
Raw Normal View History

2022-12-07 19:51:25 +09:00
class ActivityLogPublisher
def initialize
@redis = RedisConfiguration.new.connection
2022-12-07 19:51:25 +09:00
end
def publish(log_event)
@redis.publish('activity_log', Oj.dump(log_event))
end
end