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
184 B
Ruby
Raw Normal View History

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