41 lines
1.1 KiB
Ruby
41 lines
1.1 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
class ProjectCiCdSetting < ApplicationRecord
|
|
include ChronicDurationAttribute
|
|
|
|
belongs_to :project, inverse_of: :ci_cd_settings
|
|
|
|
DEFAULT_GIT_DEPTH = 20
|
|
|
|
before_create :set_default_git_depth
|
|
|
|
validates :default_git_depth,
|
|
numericality: {
|
|
only_integer: true,
|
|
greater_than_or_equal_to: 0,
|
|
less_than_or_equal_to: 1000
|
|
},
|
|
allow_nil: true
|
|
|
|
default_value_for :forward_deployment_enabled, true
|
|
default_value_for :separated_caches, true
|
|
|
|
chronic_duration_attr :runner_token_expiration_interval_human_readable, :runner_token_expiration_interval
|
|
|
|
def forward_deployment_enabled?
|
|
super && ::Feature.enabled?(:forward_deployment_enabled, project)
|
|
end
|
|
|
|
def keep_latest_artifacts_available?
|
|
# The project level feature can only be enabled when the feature is enabled instance wide
|
|
Gitlab::CurrentSettings.current_application_settings.keep_latest_artifact? && keep_latest_artifact?
|
|
end
|
|
|
|
private
|
|
|
|
def set_default_git_depth
|
|
self.default_git_depth ||= DEFAULT_GIT_DEPTH
|
|
end
|
|
end
|
|
|
|
ProjectCiCdSetting.prepend_mod_with('ProjectCiCdSetting')
|