6772312ea7
The primary license of the project is changing to: AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later with some specific files to be licensed under the one of two licenses: CC0-1.0 LGPL-3.0-or-later This commit is one of the many steps to relicense the entire codebase. Documentation granting permission for this relicensing (from all past contributors who hold copyrights) is on file with Software Freedom Conservancy, Inc.
24 lines
587 B
Ruby
24 lines
587 B
Ruby
# License: AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later
|
|
class CustomFieldMaster < ActiveRecord::Base
|
|
|
|
attr_accessible \
|
|
: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
|
|
|