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 workflow config env for health muster roll #3402

Merged
merged 2 commits into from
Jan 9, 2025
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -180,5 +180,19 @@ env: |
- name: MUSTERROLL_UPDATE_ATTENDANCE_REGISTER_REVIEW_STATUS_ENABLED
value: {{ index .Values "musterroll-update-attendance-register-review-status-enabled" | quote }}
{{- end }}
{{- if index .Values "musterroll-workflow-enabled" }}
- name: MUSTERROLL_WORKFLOW_ENABLED
value: {{ index .Values "musterroll-workflow-enabled" | quote }}
{{- end }}
- name: MUSTERROLL_NOWORKFLOW_CREATE_STATUS
value: "APPROVAL_PENDING"
{{- if index .Values "musterroll-validate-attendance-register-enabled" }}
- name: MUSTERROLL_VALIDATE_ATTENDANCE_REGISTER_ENABLED
value: {{ index .Values "musterroll-validate-attendance-register-enabled" | quote }}
{{- end }}
{{- if index .Values "musterroll-set-default-duration-enabled" }}
- name: MUSTERROLL_SET_DEFAULT_DURATION_ENABLED
value: {{ index .Values "musterroll-set-default-duration-enabled" | quote }}
{{- end }}


4 changes: 3 additions & 1 deletion deploy-as-code/helm/environments/unified-health-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -546,7 +546,9 @@ health-muster-roll:
musterroll-validate-start-date-monday-enabled: "false"
musterroll-add-bank-account-details-enabled: "false"
musterroll-update-attendance-register-review-status-enabled: "true"

musterroll-workflow-enabled: "true"
musterroll-set-default-duration-enabled: "false"
musterroll-validate-attendance-register-enabled: "true"


transformer:
Expand Down
3 changes: 3 additions & 0 deletions deploy-as-code/helm/environments/unified-health-qa.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -365,6 +365,9 @@ health-muster-roll:
musterroll-validate-start-date-monday-enabled: "false"
musterroll-add-bank-account-details-enabled: "false"
musterroll-update-attendance-register-review-status-enabled: "true"
musterroll-workflow-enabled: "true"
musterroll-set-default-duration-enabled: "false"
musterroll-validate-attendance-register-enabled: "true"

transformer:
egov-boundary-hierarchy-name: "HIERARCHYTEST"
Expand Down