Update namespacing & naming

This commit is contained in:
Kevin McConnell
2025-12-11 09:18:36 +00:00
parent 5d2ca6759d
commit dece2d08d1
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
class Account < ApplicationRecord
include Account::Storage, Entropic, MultiTenant, Seedeable
include Account::Storage, Entropic, MultiTenantable, Seedeable
has_one :join_code
has_many :users, dependent: :destroy
@@ -1,4 +1,4 @@
module MultiTenant
module Account::MultiTenantable
extend ActiveSupport::Concern
included do
@@ -1,6 +1,6 @@
require "test_helper"
class MultiTenantTest < ActiveSupport::TestCase
class Account::MultiTenantableTest < ActiveSupport::TestCase
test "accepting_signups? is true when multi_tenant is enabled" do
with_multi_tenant_mode(true) do
assert Account.accepting_signups?