1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-12-11 22:24:21 +01:00
fab-manager/app/models/stats/machine.rb

12 lines
302 B
Ruby
Raw Normal View History

2022-08-29 17:34:09 +02:00
# frozen_string_literal: true
2016-03-23 18:39:41 +01:00
2022-08-29 17:34:09 +02:00
# This is a statistical data saved in ElasticSearch, about a machine reservation
class Stats::Machine
include Elasticsearch::Persistence::Model
include StatConcern
include StatReservationConcern
attribute :machineId, Integer
2023-01-31 17:10:07 +01:00
attribute :machineDates, Array
2016-03-23 18:39:41 +01:00
end