cortex-cms/cortex

View on GitHub
app/models/cortex/contentable_decorator.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Cortex
  class ContentableDecorator < Cortex::ApplicationRecord
    include Cortex::BelongsToTenant

    belongs_to :decorator
    belongs_to :contentable, polymorphic: true
  end
end