Functionality:
The admin is able to manually send actionable progress based messages to creators & reviewers
Challenges in the current solution flow:
There are 3 overarching use cases for which Prashnavali is being used for creation of good quality questions:-
Assessments
Practice Worksheets
Question Banks
The mentioned use cases require a quick turnaround time and close monitoring on the progress of the status and regular reminders to users to complete the assigned task. Just to add some colour:-
For an assessment, usually 5 days are allotted to the creator & contribution reviewer to create, review, make required changes, resubmit and re-review around 40 questions each.
For a practice worksheet, each creator has to complete two chapters per week (15 questions each), and each reviewer has to review questions for around 4 chapters per week (15 questions each)
Currently, to send reminders to all creators & reviewers, the admin has to do these steps:-
Login to the contribution portal
Go to ‘My Projects’
Open the desired project (approx. 46 projects in chapter worksheets)
See the overall progress status of the project
Open the desired question set (approx 15-30 question sets per project in case of chapter worksheets)
See the progress in that particular question set
Send a reminder/nudge to all creators & reviewers
Steps 3-7 need to be repeated for all projects & all question sets in that project
Functional solution:
The admin is able to send reminders/nudges to users (creators & reviewers) based on their progress on a project level
The proposed solution is:
Login to the sourcing portal
Go to ‘My Projects’
Open the desired project (approx. 46 projects in chapter worksheets)
See the overall progress status of the project
Send a reminder/nudge to all creators & reviewers
Slide 25-28 attached for wireframes of the solution
Technical solution:
Approach
Adding Checkbox to enable Reminder
There will be one checkbox added to the UI on the project page by updating the sourcing project creation page.
- Understand and propose updated to sourcing project creation page.
Have to add an system environment variable: isSendReminderEnable, this key will have a boolean value. By default, isSendReminderEnable: false.
Depending upon the system environment variable, the checkbox will be blank in the beginning. SourcingOrg Admin can enable it, if required.
The updated value of the checkbox will be stored in the config of sourcing project.
- Find out system variable file.
- Propose new variable to be added.
Adding a button “‘Send a Reminder”
Only if isSendReminderEnable: true in the config of collection, we’ll show the button “Send a Reminder” on the nomination page.
On click of this button we’ll open a modal which will have UI as given below:
https://docs.google.com/presentation/d/13_KfHUE53_jqaGS6WBpDactC4b9KK7UT/edit#slide=id.g13681ada685_0_155
Fetching User Details
To have a list of users, we’ll have the data from following API on click of Send Reminder button.
Nomination list(Existing API):API: program/v1/nomination/list
We are already hitting this API on opening of nomination page.
This API has Key: result[0].rolemapping, which will give us the userIds of contributor and reviewers.
For the complete details of users we will hit following API:
API: program/v1/contributor/search
With the help of the above mentioned API we will show the name of contributors and reviewers on UI.
Sending Message
On selecting at least one user(contributor/reviewer) out of all users in the list, a button to send a message will be enabled on modal.
On click of that button a template mail/SMS will be sent to selected users and the SMS/Email API will get hit.
Send SMS API:
API: user/v1/notification/email
Doc: http://docs.sunbird.org/latest/apis/notificationapi/#section/Authentication
Add Comment