Skip to content

Commit

Permalink
Added Scribe Feature Flags (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
shivankacker authored Sep 27, 2024
1 parent f160df6 commit d1eb5a5
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions care_scribe/apps.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
from django.apps import AppConfig
from care.utils.registries.feature_flag import FlagRegistry, FlagType

PLUGIN_NAME = "care_scribe"


class CareScribeConfig(AppConfig):
name = PLUGIN_NAME

def ready(self):
FlagRegistry.register(FlagType.FACILITY, "SCRIBE_ENABLED")
FlagRegistry.register(FlagType.USER, "SCRIBE_ENABLED")

0 comments on commit d1eb5a5

Please sign in to comment.