Add validation for relation member roles

Fixes #3563
This commit is contained in:
Tom Hughes 2022-06-09 19:11:59 +01:00
parent 674f531a18
commit a3a228862c
3 changed files with 24 additions and 0 deletions

View file

@ -25,4 +25,6 @@ class OldRelationMember < ApplicationRecord
belongs_to :old_relation, :foreign_key => [:relation_id, :version], :inverse_of => :old_members
# A bit messy, referring to the current tables, should do for the data browser for now
belongs_to :member, :polymorphic => true
validates :member_role, :allow_blank => true, :length => { :maximum => 255 }, :characters => true
end

View file

@ -23,4 +23,6 @@ class RelationMember < ApplicationRecord
belongs_to :relation
belongs_to :member, :polymorphic => true
validates :member_role, :allow_blank => true, :length => { :maximum => 255 }, :characters => true
end