KyivKrishnaAcademy/ved_akadem_students

View on GitHub
app/models/certificate_template_font.rb

Summary

Maintainability
A
0 mins
Test Coverage
class CertificateTemplateFont < ApplicationRecord
  validates :name, :file, presence: true

  has_many :certificate_template_entries, dependent: :restrict_with_exception

  mount_uploader :file, TTFUploader

  has_paper_trail
end