7e6f6e1603
Enables frozens string for the following: * lib/gitlab/conflict/**/*.rb * lib/gitlab/cross_project_access/**/*.rb * lib/gitlab/cycle_analytics/**/*.rb * lib/gitlab/data_builder/**/*.rb * lib/gitlab/database/**/*.rb * lib/gitlab/dependency_linker/**/*.rb * lib/gitlab/diff/**/*.rb * lib/gitlab/downtime_check/**/*.rb * lib/gitlab/email/**/*.rb * lib/gitlab/etag_caching/**/*.rb Partially addresses gitlab-org/gitlab-ce#47424.
23 lines
521 B
Ruby
23 lines
521 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module CycleAnalytics
|
|
module Summary
|
|
class Issue < Base
|
|
def initialize(project:, from:, current_user:)
|
|
@project = project
|
|
@from = from
|
|
@current_user = current_user
|
|
end
|
|
|
|
def title
|
|
n_('New Issue', 'New Issues', value)
|
|
end
|
|
|
|
def value
|
|
@value ||= IssuesFinder.new(@current_user, project_id: @project.id).execute.created_after(@from).count
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|