debian-mirror-gitlab/app/models/dependency_proxy/group_setting.rb
2023-01-12 18:35:48 +00:00

9 lines
184 B
Ruby

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