AyuntamientoMadrid/participacion

View on GitHub
app/models/budget/content_block.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Budget
  class ContentBlock < ApplicationRecord
    validates :locale, presence: true, inclusion: { in: ->(*) { Setting.enabled_locales.map(&:to_s) }}
    validates :heading, presence: true, uniqueness: { scope: :locale }

    belongs_to :heading
    delegate :name, to: :heading, allow_nil: true
  end
end