Module: NeetoJwtEngine::IncinerableConcern

Extended by:
ActiveSupport::Concern
Defined in:
app/models/concerns/neeto_jwt_engine/incinerable_concern.rb

Constant Summary collapse

MODELS_REQUIRE_DESTROY =
[]
CYCLIC_DEPENDENCIES =
{}
SKIPPED_MODELS =
[] + get_uninstalled_skipped_models

Class Method Summary collapse

Class Method Details

.associated_models(org_id) ⇒ Object



10
11
12
13
14
15
16
17
# File 'app/models/concerns/neeto_jwt_engine/incinerable_concern.rb', line 10

def self.associated_models(org_id)
  {
    "NeetoJwtEngine::Configuration": {
      joins: {},
      where: ["organization_id = ?", org_id]
    }
  }
end

.get_uninstalled_skipped_modelsObject



19
20
21
22
# File 'app/models/concerns/neeto_jwt_engine/incinerable_concern.rb', line 19

def self.get_uninstalled_skipped_models
  models = []
  models
end