learningtapestry/lcms-engine

View on GitHub
app/models/lcms/engine/resource_download.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
# frozen_string_literal: true

module Lcms
  module Engine
    class ResourceDownload < ApplicationRecord
      DOWNLOAD_PER_CATEGORY_LIMIT = 5

      belongs_to :resource
      belongs_to :download
      belongs_to :download_category

      validates :download, presence: true

      accepts_nested_attributes_for :download
    end
  end
end