Main Avalanche Network server application. Built with Ruby on Rails.

send_step_validation_notification.rb 269B

    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