Cleanup pt 2

This commit is contained in:
zandercymatics 2024-05-31 13:22:17 -06:00
parent be68c8f562
commit fb834824d6
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7
4 changed files with 4 additions and 11 deletions

View file

@ -326,20 +326,13 @@ SERVER_EMAIL = "root@get.gov"
# endregion
# region: Waffle feature flags-----------------------------------------------------------###
# If Waffle encounters a reference to a flag that is not in the database, should Waffle create the flag?
# If Waffle encounters a reference to a flag that is not in the database, create the flag automagically.
WAFFLE_CREATE_MISSING_FLAGS = True
# If Waffle encounters a reference to a switch that is not in the database, should Waffle create the switch?
WAFFLE_CREATE_MISSING_SWITCHES = True
# The model that will be used to keep track of flags. Extends AbstractUserFlag.
# Used to replace the default flag class (for customization purposes).
WAFFLE_FLAG_MODEL = "registrar.WaffleFlag"
# The model that will be used to keep track of switches. Extends AbstractBaseSwitch.
# Used to replace the default switch class (for customization purposes).
WAFFLE_SWITCH_MODEL = "registrar.WaffleSwitch"
# endregion
# region: Headers-----------------------------------------------------------###