debian-mirror-gitlab/lib/gitlab/cycle_analytics/summary/deploy.rb
2020-06-23 00:09:42 +05:30

26 lines
536 B
Ruby

# frozen_string_literal: true
module Gitlab
module CycleAnalytics
module Summary
class Deploy < Base
def title
n_('Deploy', 'Deploys', value.to_i)
end
def value
@value ||= Value::PrettyNumeric.new(deployments_count)
end
private
def deployments_count
query = @project.deployments.success.where("created_at >= ?", @from)
query = query.where("created_at <= ?", @to) if @to
query.count
end
end
end
end
end