openSUSE/osem

View on GitHub
app/models/sponsorship_level.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

class SponsorshipLevel < ApplicationRecord
  validates :title, presence: true
  belongs_to :conference
  acts_as_list scope: :conference
  has_many :sponsors

  has_paper_trail ignore: [:updated_at], meta: { conference_id: :conference_id }
end