Module: Ecoportal::API::Common::Content::CollectionModel::Mutation

Extended by:
Includer
Included in:
Ecoportal::API::Common::Content::CollectionModel
Defined in:
lib/ecoportal/api/common/content/collection_model/mutation.rb,
lib/ecoportal/api/common/content/collection_model/mutation/clear.rb,
lib/ecoportal/api/common/content/collection_model/mutation/delete.rb,
lib/ecoportal/api/common/content/collection_model/mutation/upsert.rb

Defined Under Namespace

Modules: Clear, Delete, Upsert

Class Method Summary collapse

Methods included from Includer

include_missing

Class Method Details

.included(base) ⇒ Object



14
15
16
17
18
19
20
# File 'lib/ecoportal/api/common/content/collection_model/mutation.rb', line 14

def included(base)
  super

  include_missing(base, Upsert)
  include_missing(base, Delete)
  include_missing(base, Clear)
end