Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@ -1220,6 +1220,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