Skip to content
Snippets Groups Projects
Commit 97ec24f0 authored by Grzegorz Bizon's avatar Grzegorz Bizon
Browse files

Return CI entry config as value by default

parent d3991289
No related branches found
No related tags found
1 merge request!4820Move global ci entries handling from legacy to new config
Pipeline #
Loading
Loading
@@ -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
Loading
Loading
@@ -48,7 +49,7 @@ module Gitlab
end
 
def value
raise NotImplementedError
@config
end
 
def self.nodes
Loading
Loading
Loading
Loading
@@ -11,10 +11,6 @@ module Gitlab
validations do
validates :config, type: String
end
def value
@config
end
end
end
end
Loading
Loading
Loading
Loading
@@ -11,10 +11,6 @@ module Gitlab
validations do
validates :config, array_of_strings: true
end
def value
@config
end
end
end
end
Loading
Loading
Loading
Loading
@@ -11,10 +11,6 @@ module Gitlab
validations do
validates :config, array_of_strings: true
end
def value
@config
end
end
end
end
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment