diff --git a/blog/2022-03-03-loan-banking-using-conductor.md b/blog/2022-03-03-loan-banking-using-conductor.md index f3c0ac6c..d3b31dec 100644 --- a/blog/2022-03-03-loan-banking-using-conductor.md +++ b/blog/2022-03-03-loan-banking-using-conductor.md @@ -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. @@ -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).