houdini/app/models/custom_field_master.rb

26 lines
680 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2020-06-12 20:03:43 +00:00
# License: AGPL-3.0-or-later WITH WTO-AP-3.0-or-later
# Full license explanation at https://github.com/houdiniproject/houdini/blob/master/LICENSE
class CustomFieldMaster < ApplicationRecord
# :nonprofit,
# :nonprofit_id,
# :name,
# :deleted,
# :created_at
validates :name, presence: true
validate :no_dupes, on: :create
belongs_to :nonprofit
has_many :custom_field_joins, dependent: :destroy
scope :not_deleted, -> { where(deleted: [nil, false]) }
def no_dupes
return self if nonprofit.nil?
errors.add(:base, 'Duplicate custom field') if nonprofit.custom_field_masters.not_deleted.where(name: name).any?
end
end