Welcome to mirror list, hosted at ThFree Co, Russian Federation.

namespace_ci_cd_setting.rb « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c9c3a3206b62f90523f9b75cbcaec5ed9b16f943 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class NamespaceCiCdSetting < ApplicationRecord # rubocop:disable Gitlab/NamespacedClass
  belongs_to :namespace, inverse_of: :ci_cd_settings

  self.primary_key = :namespace_id
end

NamespaceCiCdSetting.prepend_mod