mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
9 lines
370 B
Ruby
9 lines
370 B
Ruby
# frozen_string_literal: true
|
|
|
|
# StatisticCustomAggregation is an ElasticSearch aggregation that will run when the end-user is browsing the statistics
|
|
# page for the related StatisticType.
|
|
# See https://www.elastic.co/guide/en/elasticsearch/reference/current/search-aggregations.html
|
|
class StatisticCustomAggregation < ApplicationRecord
|
|
belongs_to :statistic_type
|
|
end
|