Skip to content

Commit

Permalink
404 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Doug Sillars authored and Doug Sillars committed Mar 18, 2022
1 parent 4074d30 commit 0b80728
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions blog/2022-03-03-loan-banking-using-conductor.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ For now, we have created a workflow with only the most obvious and necessary tas

The first task is `customer_details`, basic details (name, address, loan type,...) of the customer is fetched.

On the basis of loan type applied by the customer, `loan_type` a [switch-task](../docs/reference-docs/switch-task) makes decision of proceeding workflow.
On the basis of loan type applied by the customer, `loan_type` a [switch-task](/content/docs/reference-docs/switch-task) makes decision of proceeding workflow.

#### If customer applies for education loan, the workflow looks like.

Expand All @@ -60,7 +60,7 @@ If the credit score of the customer is below average score, banks don't give loa

The task `credit_score_risk` fetches data from one of the credit bureau and generates the result on the basis of credit score and other parameters.
Result can be - ` decision : possible` if it possible to give loan and ` decision : reject` if it not possible to give loan.
On the basis of result generated by `credit_score_risk` the [switch_task](/content/docs/reference-docs/switch-task.md) `credit_result` proceeds the workflow.
On the basis of result generated by `credit_score_risk` the [switch_task](/content/docs/reference-docs/switch-task) `credit_result` proceeds the workflow.

In the above diagram, the result generated is `decision : possible` hence, the workflow goes to the task `principal_interest_calculation` (if the result was `decision : reject` the flow would have went to the task `terminate_due_to_bank_rejection` which is a terminate task).

Expand Down

0 comments on commit 0b80728

Please sign in to comment.