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