mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-01 12:24:28 +01:00
20 lines
658 B
Ruby
20 lines
658 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Generate statistics indicators about projects
|
|
class Statistics::Builders::ProjectsBuilderService
|
|
include Statistics::Concerns::HelpersConcern
|
|
include Statistics::Concerns::ProjectsConcern
|
|
|
|
class << self
|
|
def build(options = default_options)
|
|
# project list
|
|
Statistics::FetcherService.projects_list(options).each do |p|
|
|
Stats::Project.create({ date: format_date(p.date),
|
|
type: 'project',
|
|
subType: 'published',
|
|
stat: 1 }.merge(user_info_stat(p)).merge(project_info_stat(p)))
|
|
end
|
|
end
|
|
end
|
|
end
|