Make stage seed instance variables less ambiguous
This commit is contained in:
parent
95f2826e1a
commit
5b019f4317
1 changed files with 4 additions and 4 deletions
|
@ -12,13 +12,13 @@ module Gitlab
|
|||
@pipeline = pipeline
|
||||
@attributes = attributes
|
||||
|
||||
@seeds = attributes.fetch(:builds).map do |attributes|
|
||||
@builds = attributes.fetch(:builds).map do |attributes|
|
||||
Seed::Build.new(@pipeline, attributes)
|
||||
end
|
||||
end
|
||||
|
||||
def user=(current_user)
|
||||
@seeds.each { |seed| seed.user = current_user }
|
||||
@builds.each { |seed| seed.user = current_user }
|
||||
end
|
||||
|
||||
def attributes
|
||||
|
@ -28,8 +28,8 @@ module Gitlab
|
|||
end
|
||||
|
||||
def seeds
|
||||
strong_memoize(:seeds_included) do
|
||||
@seeds.select(&:included?)
|
||||
strong_memoize(:seeds) do
|
||||
@builds.select(&:included?)
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue