Skip to content

Commit

Permalink
Add connectid user invite setting
Browse files Browse the repository at this point in the history
  • Loading branch information
sravfeyn committed Dec 12, 2024
1 parent fb71513 commit 48b6278
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
2 changes: 2 additions & 0 deletions environments/production/public.yml
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,8 @@ localsettings:
CONNECTID_URL: 'https://connectid.dimagi.com/o/userinfo'
CONNECTID_CHANNEL_URL: 'https://connectid.dimagi.com/messaging/create_channel/'
CONNECTID_MESSAGE_URL: 'https://connectid.dimagi.com/messaging/send_fcm/'
CONNECTID_USERINVITE_URL: 'https://connectid.dimagi.com/users/forward_hq_invite'

ASYNC_INDICATORS_TO_QUEUE: 20000

# comment these two lines out to make a new rackspace machine
Expand Down
2 changes: 1 addition & 1 deletion environments/staging/public.yml
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ localsettings:
CONNECTID_URL: 'https://connectid.dimagi.com/o/userinfo'
CONNECTID_CHANNEL_URL: 'https://connectid.dimagi.com/messaging/create_channel/'
CONNECTID_MESSAGE_URL: 'https://connectid.dimagi.com/messaging/send_fcm/'

CONNECTID_USERINVITE_URL: 'https://connectid.dimagi.com/users/forward_hq_invite'

# comment these two lines out to make a new rackspace machine
commcare_cloud_root_user: ubuntu
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1218,6 +1218,10 @@ CONNECTID_CHANNEL_URL = "{{ localsettings.CONNECTID_CHANNEL_URL }}"
CONNECTID_MESSAGE_URL = "{{ localsettings.CONNECTID_MESSAGE_URL }}"
{% endif %}

{% if localsettings.CONNECTID_USERINVITE_URL is defined %}
CONNECTID_USERINVITE_URL = "{{ localsettings.CONNECTID_USERINVITE_URL }}"
{% endif %}

{% if localsettings.MAX_MOBILE_UCR_LIMIT is defined %}
MAX_MOBILE_UCR_LIMIT = {{ localsettings.MAX_MOBILE_UCR_LIMIT }}
{% endif %}
Expand Down

0 comments on commit 48b6278

Please sign in to comment.