cortex-cms/cortex

View on GitHub
app/models/concerns/cortex/belongs_to_tenant.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Cortex
  module BelongsToTenant
    extend ActiveSupport::Concern

    included do
      belongs_to :tenant

      validates :tenant, presence: true

      scope :find_by_tenant, ->(tenant) { where(tenant_id: tenant.id) }
    end
  end
end