Commit 25505d97 authored by Grzegorz Bizon's avatar Grzegorz Bizon

Make stage seed instance variables less ambiguous

parent f71b2670
...@@ -12,13 +12,13 @@ module Gitlab ...@@ -12,13 +12,13 @@ module Gitlab
@pipeline = pipeline @pipeline = pipeline
@attributes = attributes @attributes = attributes
@seeds = attributes.fetch(:builds).map do |attributes| @builds = attributes.fetch(:builds).map do |attributes|
Seed::Build.new(@pipeline, attributes) Seed::Build.new(@pipeline, attributes)
end end
end end
def user=(current_user) def user=(current_user)
@seeds.each { |seed| seed.user = current_user } @builds.each { |seed| seed.user = current_user }
end end
def attributes def attributes
...@@ -28,8 +28,8 @@ module Gitlab ...@@ -28,8 +28,8 @@ module Gitlab
end end
def seeds def seeds
strong_memoize(:seeds_included) do strong_memoize(:seeds) do
@seeds.select(&:included?) @builds.select(&:included?)
end end
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment