Skip to content

Commit

Permalink
missing files
Browse files Browse the repository at this point in the history
  • Loading branch information
sinehome committed Nov 24, 2024
1 parent 8891196 commit 77aadf4
Show file tree
Hide file tree
Showing 6 changed files with 118 additions and 0 deletions.
24 changes: 24 additions & 0 deletions hrm-form-definitions/form-definitions/tz/v1/BlockedEmojis.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
[
"beer",
"beers",
"wine_glass",
"cocktail",
"tropical_drink",
"tumbler_glass",
"smoking",
"middle_finger",
"wink",
"stuck_out_tongue_winking_eye",
"kissing_heart",
"kissing",
"kissing_closed_eyes",
"kissing_smiling_eyes",
"tongue",
"eggplant",
"peach",
"dancers",
"men-with-bunny-ears-partying",
"women-with-bunny-ears-partying",
"syringe",
"pill"
]
11 changes: 11 additions & 0 deletions hrm-form-definitions/form-definitions/tz/v1/PrepopulateKeys.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"survey":{
"ChildInformationTab":[],
"CallerInformationTab":[]
},
"preEngagement":{
"ChildInformationTab":[],
"CallerInformationTab":[],
"CaseInformationTab":[]
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[
{
"flag": "blocked",
"label": "Short Term Block (24 Hours)",
"durationInHours": "24"
},
{
"flag": "blocked",
"label": "Long Term Block (5 Years)",
"durationInHours": "43848"
}
]
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
[
{
"name": "summary",
"label": "Summary",
"editLabel": "Edit Summary",
"type": "textarea",
"rows": 20,
"width": 500,
"placeholder": "Enter a summary of the client"
},
{
"name": "recommendedApproach",
"label": "Recommended Approach",
"editLabel": "Edit Recommended Approach",
"type": "textarea",
"rows": 20,
"width": 500,
"placeholder": "Enter recommended approach"
},
{
"name": "details",
"label": "Details",
"editLabel": "Edit Details",
"type": "textarea",
"rows": 20,
"width": 500,
"placeholder": "Enter Details"
}
]
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"offlineChannels": ["Bulletin board", "Post", "In person", "Website forum", "Other"]
}
39 changes: 39 additions & 0 deletions plugin-hrm-form/src/permissions/tz.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
{
"viewCase": [["isSupervisor"], ["isCreator"]],
"closeCase": [["isSupervisor"], ["isCreator", "isCaseOpen"]],
"reopenCase": [["isSupervisor"]],
"caseStatusTransition": [["isSupervisor"], ["isCreator", "isCaseOpen"]],
"addNote": [["isSupervisor"], ["isCreator", "isCaseOpen"]],
"editNote": [["isSupervisor"]],
"addReferral": [["isSupervisor"], ["isCreator", "isCaseOpen"]],
"editReferral": [["isSupervisor"]],
"addHousehold": [["isSupervisor"], ["isCreator", "isCaseOpen"]],
"editHousehold": [["isSupervisor"]],
"addPerpetrator": [["isSupervisor"], ["isCreator", "isCaseOpen"]],
"editPerpetrator": [["isSupervisor"]],
"addIncident": [["isSupervisor"], ["isCreator", "isCaseOpen"]],
"editIncident": [["isSupervisor"]],
"addDocument": [["isSupervisor"], ["isCreator", "isCaseOpen"]],
"editDocument": [["isSupervisor"]],
"editCaseOverview": [["isSupervisor"], ["isCreator", "isCaseOpen"]],
"updateCaseContacts": [["isSupervisor"], ["isCaseOpen"]],

"viewContact": [["everyone"]],
"editContact": [["isSupervisor"], ["isOwner"]],
"editInProgressContact": [["isSupervisor"], ["isOwner"]],
"viewExternalTranscript": [["everyone"]],
"viewRecording": [],
"addContactToCase": [["isSupervisor"], ["isOwner"]],
"removeContactFromCase": [["isSupervisor"], ["isOwner"]],

"viewProfile": [["everyone"]],
"flagProfile": [["isSupervisor"]],
"unflagProfile": [["isSupervisor"]],
"viewProfileSection": [["everyone", { "sectionType": "summary" }], ["isSupervisor"]],
"createProfileSection": [["isSupervisor"]],
"editProfileSection": [["isSupervisor"]],

"viewPostSurvey": [["isSupervisor"]],

"viewIdentifiers": [["everyone"]]
}

0 comments on commit 77aadf4

Please sign in to comment.