10 lines
253 B
Ruby
10 lines
253 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Class is used while we're migrating from master to main
|
|
module Gitlab
|
|
module DefaultBranch
|
|
def self.value(object: nil)
|
|
Feature.enabled?(:main_branch_over_master, object) ? 'main' : 'master'
|
|
end
|
|
end
|
|
end
|