Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added env for program join and entities enable and disable feature #3936

Merged
Merged
Show file tree
Hide file tree
Changes from 5 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
3 changes: 3 additions & 0 deletions ansible/roles/stack-sunbird/templates/ml-core-service.env
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,9 @@ PROGRAM_USERS_JOINED_TOPIC={{ml_core_program_users_joined_topic | default (env_n
#TimeOffset with respect to UTC
TIMEZONE_DIFFRENECE_BETWEEN_LOCAL_TIME_AND_UTC={{ml_core_timezone_diffrenece_between_local_time_and_utc | default ("+05:30")}}

#Validate Entities enable/Disable
VALIDATE_ENTITIES={{ml_service_validate_entities | default ("ON")}}

#User Delete on and off flow
USER_DELETE_ON_OFF={{manage_learn_ user_delete_on_off | default("ON")}}

Expand Down
6 changes: 6 additions & 0 deletions ansible/roles/stack-sunbird/templates/ml-survey-service.env
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,12 @@ KEYCLOAK_PUBLIC_KEY_PATH={{ml_survey_keycloak_public_key_path|default("keycloak-
## portal url of env
APP_PORTAL_BASE_URL={{ proto }}://{{ domain_name }}

#Program join enable/disable
PROGRAM_JOIN_ON_OFF={{ml_program_join_on_off | default ("ON")}}

#validate entities enable/disable
VALIDATE_ENTITIES={{ml_service_validate_entities | default ("ON")}}

#User Delete on and off flow
USER_DELETE_ON_OFF={{manage_learn_ user_delete_on_off | default("ON")}}

Expand Down
Loading