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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
183 B
Ruby
Raw Normal View History

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