debian-mirror-gitlab/lib/gitlab/cycle_analytics/summary/deploy.rb

24 lines
508 B
Ruby
Raw Normal View History

2019-02-15 15:39:39 +05:30
# frozen_string_literal: true
2017-08-17 22:00:37 +05:30
module Gitlab
module CycleAnalytics
module Summary
class Deploy < Base
2019-12-21 20:55:43 +05:30
include Gitlab::Utils::StrongMemoize
2017-08-17 22:00:37 +05:30
def title
n_('Deploy', 'Deploys', value)
end
def value
2019-12-21 20:55:43 +05:30
strong_memoize(:value) do
query = @project.deployments.success.where("created_at >= ?", @from)
query = query.where("created_at <= ?", @to) if @to
query.count
end
2017-08-17 22:00:37 +05:30
end
end
end
end
end