gitlab-org--gitlab-foss/app/models/protected_tag.rb

11 lines
323 B
Ruby
Raw Normal View History

class ProtectedTag < ActiveRecord::Base
include Gitlab::ShellAdapter
2017-04-03 14:17:24 +00:00
include ProtectedRef
has_many :push_access_levels, dependent: :destroy
validates :push_access_levels, length: { is: 1, message: "are restricted to a single instance per protected tag." }
accepts_nested_attributes_for :push_access_levels
end