Class: Continuum::ModuleManagementStrategy

Inherits:
Object
  • Object
show all
Defined in:
src/lib/continuum/module_management_strategy.rb

Overview

Defines supported strategies with which to create new modules and edit existing ones. Choosing the correct module management strategy to meet your business objectives is critical to using Continuum’s AMP reporting functionality correctly, so please consult our support documentation for more information.

Constant Summary collapse

APPEND =

Append any new accessibility concerns to a module, creating the module first if it doesn’t already exist; do not overwrite any existing modules. Useful for intentionally adding to an existing module, e.g. one that was just created recently, rather than creating a new module.

:APPEND
OVERWRITE =

Overwrite existing modules when a module with the same ID or name already exists, deleting any existing accessibility concerns in the module prior to repopulating it with any new accessibility concerns.

:OVERWRITE
ABORT =

Don’t report to AMP when a module with the same ID or name already exists; do not overwrite or append accessibility concerns to the existing module.

:ABORT