education/classroom

View on GitHub
app/channels/repository_creation_status_channel.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

class RepositoryCreationStatusChannel < ApplicationCable::Channel
  def self.channel(user_id:, assignment_id:)
    "#{channel_name}_#{user_id}_#{assignment_id}"
  end

  def subscribed
    stream_from self.class.channel(user_id: current_user.id, assignment_id: params[:assignment_id])
  end

  def unsubscribed
    # Any cleanup needed when channel is unsubscribed
  end
end