Commit 97ec24f0 authored by Grzegorz Bizon's avatar Grzegorz Bizon

Return CI entry config as value by default

parent d3991289
......@@ -9,7 +9,8 @@ module Gitlab
class InvalidError < StandardError; end
attr_reader :config
attr_accessor :key, :description
attr_accessor :description
attr_writer :key
def initialize(config)
@config = config
......@@ -48,7 +49,7 @@ module Gitlab
end
def value
raise NotImplementedError
@config
end
def self.nodes
......
......@@ -11,10 +11,6 @@ module Gitlab
validations do
validates :config, type: String
end
def value
@config
end
end
end
end
......
......@@ -11,10 +11,6 @@ module Gitlab
validations do
validates :config, array_of_strings: true
end
def value
@config
end
end
end
end
......
......@@ -11,10 +11,6 @@ module Gitlab
validations do
validates :config, array_of_strings: true
end
def value
@config
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