10 lines
368 B
Ruby
10 lines
368 B
Ruby
# frozen_string_literal: true
|
|
|
|
class UserMailerPreview < ActionMailer::Preview
|
|
def exercise_anomaly_detected
|
|
collection = ExerciseCollection.new(name: 'Hello World', user: FactoryBot.build(:admin))
|
|
anomalies = {49 => 879.325828, 51 => 924.870057, 31 => 1031.21233, 69 => 2159.182116}
|
|
UserMailer.exercise_anomaly_detected(collection, anomalies)
|
|
end
|
|
end
|