Skip to content

Commit

Permalink
Merge pull request #20 from Lightmatter/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
t-a-y-l-o-r authored Aug 22, 2023
2 parents bb4c57b + f36fac6 commit b7d076a
Show file tree
Hide file tree
Showing 3 changed files with 661 additions and 576 deletions.
4 changes: 3 additions & 1 deletion django_welkin/management/commands/welkin_sync_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@
from ...models.base import _Welkin

# TODO: send out a warning to indicate this will removed soon
SYNC_ROLES = settings.WELKIN_SYNC_ROLES or ["health-coach", "physician"]
SYNC_ROLES = ["health-coach", "physician"]
if hasattr(settings, "WELKIN_SYNC_ROLES"):
SYNC_ROLES = settings.WELKIN_SYNC_ROLES

# pylint: disable=no-member
class Command(BaseCommand):
Expand Down
Loading

0 comments on commit b7d076a

Please sign in to comment.