gitlab-org--gitlab-foss/app/models/dependency_proxy/group_setting.rb

10 lines
184 B
Ruby

# frozen_string_literal: true
class DependencyProxy::GroupSetting < ApplicationRecord
belongs_to :group
attribute :enabled, default: true
validates :group, presence: true
end