Codeminer42/cm42-central

View on GitHub
app/workers/pusher_notification_worker.rb

Summary

Maintainability
A
0 mins
Test Coverage
class PusherNotificationWorker
  include Sidekiq::Worker

  def perform(channel_name)
    Pusher.trigger(channel_name, 'notify_changes',
      message: I18n.t('update_stories_successfully'))
  end
end