Main Avalanche Network server application. Built with Ruby on Rails.
class SendStepValidationNotification @queue = :step_notifications def self.perform(step_id) # Get step step = AgentStep.find(step_id) # Send Step Validation Notification Email MissionMailer.step_validation_notification(step).deliver end end