Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Objective

...

Product Page:

To enable citizens to access features such as Pay Via WhatsApp.

Shows specific data to provide a brief about the particular tenant.

Dynamic Data:

The dynamic data are displayed in Orange cells. We get the dynamic data from the particular service APIs. These APIs are made open search, So that Citizens can check these data even if they are not logged in.

MDMS:

We are getting the static data like Helpline , Service Center, Pay Via whats app link and validity of an application from the MDMS config.

...

Code Block
 "MdmsCriteria": {
        "tenantId": "pb",
        "moduleDetails": [
            {
                "moduleName": "common-masters",
                "masterDetails": [
                    {
                        "name": "StaticData"
                    }
                ]
            }
        ]
    }

Add Link to FAQs and How it works for each module:

We can add FAQs and How it works link in the mdms for each service.

...

Navigation URL for FAQs: "/digit-ui/citizen/{module}-faq"

(Replace {module} with moduleCode. For Ex: "/digit-ui/citizen/pt-faq")

Navigation URL for How it works : "/digit-ui/citizen/{module}-how-it-works"

(Replace {module} with moduleCode. For Ex: "/digit-ui/citizen/pt-how-it-works")

Object reference:

{"id": 2331,

"name": "PT_FAQ_S",

...

"sidebarURL": "/digit-ui/citizen/pt-home" }

FAQs:

...

Users can check for frequently asked / common questions in this page.

We are using a common screen for all the modules FAQs. Based on the module code, the FAQs are rendered from MDMS.

Add new FAQs to the list:

We can add new FAQs to the list by adding a new object in the MDMS config for the respective service.

Object reference:

"TL" : {

"faqs": [{

"question": "TL_FAQ_QUES_ONE",

"answer": "TL_FAQ_ANS_ONE"}

]}

MDMS:

FAQs are added for each service from MDMS Config.

...

Code Block
 "MdmsCriteria": {
        "tenantId": "pb",
        "moduleDetails": [
            {
                "moduleName": "common-masters",
                "masterDetails": [
                    {
                        "name": "faqs"
                    }
                ]
            }
        ]
    }

How it Works ? :

...

Users can check what they can do or how they can get the benefits of a particular service.

We are using a common screen for all the modules How it works section. Based on the module code, the Cards are rendered from MDMS.

Add new Card to the list:

We can add new Card to the list by adding a new object in the MDMS config for the respective service.

On Language change, the link to the videos also changes.

Object reference:

{"moduleCode" : "PT",

"videosJson": [{

...

"pdfDesc": "CITIZEN_CHARTER_DOC_DESC"}

MDMS:

How it works Properties and Videos link are added for each service from MDMS Config.

...