Add attribute reader to project level

This commit is contained in:
Małgorzata Ksionek 2019-07-10 13:33:25 +02:00
parent 198df06fea
commit 5de47766a7
1 changed files with 7 additions and 4 deletions

View File

@ -2,19 +2,22 @@
module CycleAnalytics
class ProjectLevel < Base
attr_reader :project, :options
def initialize(project, options:)
@project = project
@options = options
end
def summary
@summary ||= ::Gitlab::CycleAnalytics::StageSummary.new(@project,
from: @options[:from],
current_user: @options[:current_user]).data
@summary ||= ::Gitlab::CycleAnalytics::StageSummary.new(project,
from: options[:from],
current_user: options[:current_user]).data
end
def permissions(user:)
Gitlab::CycleAnalytics::Permissions.get(user: user, project: @project)
Gitlab::CycleAnalytics::Permissions.get(user: user, project: project)
end
end
end