evodata/app/models/check_report.rb

9 lines
213 B
Ruby
Raw Normal View History

2022-01-27 17:42:47 +01:00
class CheckReport
include ActiveModel::API
include ActiveModel::Attributes
attribute :hostname, :string
attribute :date, :datetime, default: -> { Time.now }
attribute :checks, array: true
end