720ed6f6ab
Partially addresses #47424.
9 lines
241 B
Ruby
9 lines
241 B
Ruby
# frozen_string_literal: true
|
|
|
|
class TopLevelGroupValidator < ActiveModel::EachValidator
|
|
def validate_each(record, attribute, value)
|
|
if value&.subgroup?
|
|
record.errors.add(attribute, "must be a top level Group")
|
|
end
|
|
end
|
|
end
|