tree.txt 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687
  1. PRO
  2. # dashboard
  3. my_payment_schedule|pro_rate:pro_id=OWN|icon:dollar-sign
  4. !inc:code,as_hcp_or_ally,amount,earnings
  5. !col:code:Code
  6. !col:as_hcp_or_ally:Description (HCP/Ally)
  7. !col:amount:Amount
  8. !col:earnings:Earnings:select '- TODO -' as result
  9. my_teams|team|add|view
  10. !inc:@team_number,hcp_pro_id,ally_pro_id,client_count
  11. !col:hcp_pro_id:HCP:select name_display as result from pro where id = $hcp_pro_id limit 1=>/foo/bar/$hcp_pro_id
  12. !col:ally_pro_id:Ally Pro:select name_display as result from pro where id = $ally_pro_id limit 1
  13. !col:client_count:Clients:select COUNT(*) as result FROM client WHERE team_id = $id
  14. my_teams/add_new:create
  15. hcpProUid*:record:pro:uid,name_display
  16. allyProUid*:record:pro:uid,name_display
  17. teamNumber
  18. my_teams/view/{uid}
  19. ACTIONS
  20. updateTeamNumber
  21. teamNumber=team_number
  22. deactivate
  23. memo
  24. updateDeactivationMemo
  25. memo=deactivation_memo
  26. reactivate
  27. memo
  28. updateReactivationMemo
  29. memo=reactivation_memo
  30. SUB
  31. dashboard
  32. !grp:Basic Details:team_number,created_at,client_count,is_active
  33. !grp:Associated Pros:hcp_pro_id,ally_pro_id
  34. !col:hcp_pro_id:HCP Pro:select name_display as result from pro where id = $hcp_pro_id limit 1=>/foo/bar/$hcp_pro_id
  35. !col:ally_pro_id:Ally Pro:select name_display as result from pro where id = $ally_pro_id limit 1
  36. !col:client_count:Clients:select '- TODO -' as result
  37. !col:is_active:Active:SELECT d as result FROM (VALUES ('1','Yes'),('','No')) T(v,d) WHERE v = '$is_active' limit 1
  38. !act:team_number:Update Team Number:pencil-alt=>/my_teams/view/$uid/ACTION_updateTeamNumber
  39. !act:is_active:Deactivate:pencil-alt:if:is_active=>/my_teams/view/$uid/ACTION_deactivate
  40. !act:is_active:Reactivate:pencil-alt:if-not:is_active=>/my_teams/view/$uid/ACTION_reactivate
  41. clients
  42. id=client.team_id=>/my_clients/view/UID
  43. !exc:id,uid
  44. !lnk:created_at
  45. !col:team_id:Team:select team_number as result from team where id = $team_id limit 1
  46. add_new:client
  47. teamUid:hidden=uid
  48. nameDisplay*
  49. namePrefix
  50. nameFirst*
  51. nameMiddle
  52. nameLast*
  53. nameSuffix
  54. nameCredential
  55. gender*:select:M,F
  56. dateOfBirth*:date
  57. cellNumber*:tel
  58. emailAddress*:email
  59. medicareNumber
  60. audit_log
  61. my_clients|client|add|view|icon:user-injured
  62. !inc:@name_display,date_of_birth,gender,is_client_enrolled_in_cm,is_client_enrolled_in_rm,mcp_pro_id,ally_pro_id
  63. !col:name_display:Name
  64. !col:date_of_birth:DOB
  65. !col:gender:Sex
  66. !col:is_client_enrolled_in_cm:CM
  67. !col:is_client_enrolled_in_rm:RM
  68. !col:mcp_pro_id:MCP:SELECT name_display AS result FROM pro WHERE id = $mcp_pro_id
  69. !col:ally_pro_id:Ally:SELECT name_display AS result FROM pro WHERE id = $ally_pro_id
  70. my_clients/add_new:create
  71. teamUid:record:team:uid,team_number
  72. mcpProUid:record:pro:uid,name_display
  73. allyProUid:record:pro:uid,name_display
  74. nameDisplay
  75. namePrefix
  76. nameFirst
  77. nameMiddle
  78. nameLast
  79. nameSuffix
  80. nameCredential
  81. gender:select:M,F
  82. dateOfBirth:date
  83. cellNumber:tel
  84. emailAddress:email
  85. medicareNumber
  86. my_clients/view/{uid}
  87. ACTIONS
  88. sendCellNumberConfirmationMessage
  89. putNewCellNumber
  90. newCellNumber:tel=cell_number
  91. sendEmailAddressConfirmationMessage
  92. putNewEmailAddress
  93. newEmailAddress:email=email_address
  94. putTeam
  95. teamUid:record:team:uid,team_number
  96. removeTeam:if:team_id
  97. putMcp
  98. mcpProUid:record:pro:uid,name_display
  99. removeMcp:if:mcp_pro_id
  100. putAlly
  101. allyProUid:record:pro:uid,name_display
  102. removeAlly:if:ally_pro_id
  103. putProfilePicture
  104. profilePictureBase64
  105. removeProfilePicture:if:profile_picture_base64
  106. updatePhoneInfo
  107. homePhoneNumber=home_phone_number
  108. workPhoneNumber=work_phone_number
  109. supporterPhoneNumber=supporter_phone_number
  110. supporterMemo=supporter_memo
  111. phoneNumbersMemo=phone_numbers_memo
  112. updateAddress
  113. mailingAddressLine1=mailing_address_line1
  114. mailingAddressLine2=mailing_address_line2
  115. mailingAddressCity=mailing_address_city
  116. mailingAddressState=mailing_address_state
  117. mailingAddressCountry=mailing_address_country
  118. mailingAddressZip=mailing_address_zip
  119. mailingAddressLat=mailing_address_lat
  120. mailingAddressLong=mailing_address_long
  121. homeAddressLine1=home_address_line1
  122. homeAddressLine2=home_address_line2
  123. homeAddressCity=home_address_city
  124. homeAddressState=home_address_state
  125. homeAddressCountry=home_address_country
  126. homeAddressZip=home_address_zip
  127. homeAddressLat=home_address_lat
  128. homeAddressLong=home_address_long
  129. updateMedicareNumber
  130. medicareNumber=medicare_number
  131. manuallySetIsPartBPrimaryConfirmedToTrue
  132. partBConfirmationMethod:select:MANUAL,API=partbconfirmation_method
  133. partBConfirmationMemo=partbconfirmation_memo
  134. manuallySetIsPartBPrimaryConfirmedToFalse
  135. partBConfirmationMethod:select:MANUAL,API=partbconfirmation_method
  136. partBConfirmationMemo=partbconfirmation_memo
  137. setHasMcpDoneEmVisitToTrue
  138. mcpEmVisitDate=mcp_em_visit_date
  139. mcpEmVisitNote
  140. mcpEmVisitMemo=mcp_em_visit_memo
  141. updateMcpEmVisitInfo
  142. mcpEmVisitDate=mcp_em_visit_date
  143. mcpEmVisitNote
  144. mcpEmVisitMemo=mcp_em_visit_memo
  145. setHasMcpDoneEmVisitToFalse
  146. putCrmReasons
  147. cmReason1=cm_reason1
  148. cmReason2=cm_reason2
  149. rmReason1=rm_reason1
  150. rmReason2=rm_reason2
  151. removeCrmReasons
  152. setIsClientEnrolledInCmToTrue
  153. setIsClientEnrolledInCmToFalse
  154. updateWhyNotEnrolledInCm
  155. whyNotEnrolledInCmCategory=why_not_enrolled_in_cm_category
  156. whyNotEnrolledInCmMemo=why_not_enrolled_in_cm_memo
  157. setIsClientEnrolledInRmToTrue
  158. setIsClientEnrolledInRmToFalse
  159. updateWhyNotEnrolledInRm
  160. whyNotEnrolledInRmCategory=why_not_enrolled_in_rm_category
  161. whyNotEnrolledInRmMemo=why_not_enrolled_in_rm_memo
  162. updateIntakeInfo
  163. intakeText=intake_text
  164. intakeDetail=intake_detail
  165. deactivate
  166. memo
  167. updateDeactivationMemo
  168. memo=deactivation_memo
  169. reactivate
  170. memo
  171. updateReactivationMemo
  172. memo=reactivation_memo
  173. SUB
  174. dashboard
  175. !grp:Name:name_display
  176. !grp:Demographics:gender,date_of_birth
  177. !grp:Cell number:cell_number
  178. !grp:Email address:email_address
  179. !grp:Address:home_address_city,home_address_country,home_address_lat,home_address_line1,home_address_line2,home_address_long,home_address_state,home_address_zip,home_phone_number,mailing_address_city,mailing_address_country,mailing_address_lat,mailing_address_line1,mailing_address_line2,mailing_address_long,mailing_address_state,mailing_address_zip
  180. !act:name_display:putName:pencil-alt=>/my_clients/view/$uid/ACTION_putName
  181. !act:gender:putGender:pencil-alt=>/my_clients/view/$uid/ACTION_putGender
  182. !act:date_of_birth:putDateOfBirth:pencil-alt=>/my_clients/view/$uid/ACTION_putDateOfBirth
  183. !act:mailing_address_zip:updateAddress:pencil-alt=>/my_clients/view/$uid/ACTION_updateAddress
  184. med_profile
  185. med_profile_log
  186. pro_access
  187. id=client_pro_access.client_id=>/pro_access/view/UID
  188. add_new:client_pro_access=>/pro_access/view/UID
  189. clientUid:hidden=uid
  190. proUid:record:pro:uid,name_display
  191. reasonCategory
  192. reasonMemo
  193. reasonDetail
  194. notes
  195. id=note.client_id=>/notes/view/UID
  196. add_new:note=>/notes/view/UID
  197. clientUid:hidden=uid
  198. hcpProUid:record:pro:uid,name_display
  199. allyProUid:record:pro:uid,name_display
  200. effectiveDateEST:date
  201. effectiveTime:time
  202. reason1
  203. reason2
  204. reason3
  205. reason3Plus
  206. serviceLocation
  207. category
  208. contentText
  209. contentDetail
  210. care_months
  211. id=care_month.client_id=>/care_months/view/UID
  212. add_new:care_month
  213. clientUid:hidden=uid
  214. startMonth:number
  215. startYear:number
  216. care_month_entries
  217. id=care_month_entry.client_id=>/care_month_entries/view/UID
  218. bills
  219. id=bill.client_id=>/bills/view/UID
  220. related_transactions
  221. id=pro_transaction.client_id=>/transactions/view/UID
  222. action_items
  223. id=action_item.client_id=>/action_items/view/UID
  224. add_new:action_item
  225. clientUid:hidden=uid
  226. prescriberProUid:record:pro:uid,name_display
  227. toFacilityUid:record:facility:uid,name
  228. contentText
  229. contentDetail
  230. erx
  231. id=action_item.client_id,action_item_category='RX'=>/action_items/view/UID
  232. add_new:action_item
  233. clientUid:hidden=uid
  234. prescriberProUid:record:pro:uid,name_display
  235. toFacilityUid:record:facility:uid,name
  236. contentText
  237. contentDetail
  238. mcp_updates
  239. id=client_mcp_update.client_id
  240. ally_updates
  241. id=client_ally_update.client_id
  242. audit_log
  243. notes|note|view|icon:file-alt
  244. !inc:effective_dateest,client_id,hcp_pro_id,ally_pro_id,reasons,content_text,is_signed_by_ally,is_signed_by_hcp,billed
  245. !col:effective_dateest:Date
  246. !col:client_id:Client:select name_display as result FROM client WHERE id = $client_id
  247. !col:hcp_pro_id:HCP:select name_display as result FROM pro WHERE id = $hcp_pro_id
  248. !col:ally_pro_id:Ally:select name_display as result FROM pro WHERE id = $ally_pro_id
  249. !col:reasons:Reason(s):select concat(reason1,reason2) as result FROM note WHERE id = $id
  250. !col:service_location:Location
  251. !col:category:Category
  252. !col:content_text:Content
  253. !col:is_signed_by_ally:Ally Signed?
  254. !col:is_signed_by_hcp:HCP Signed?
  255. !col:billed:Billed?:SELECT '-- TODO --' as result
  256. notes/view/{uid}
  257. ACTIONS
  258. signAsHcp
  259. SUB
  260. dashboard
  261. bills
  262. id=bill.note_id=>/bills/view/UID
  263. add_new:bill:createForNote
  264. noteUid:hidden=uid
  265. effectiveDate:date
  266. code
  267. reason1
  268. reason2
  269. reason3
  270. reason3Plus
  271. serviceLocation
  272. modifier
  273. numberOfUnits:number
  274. audit_log
  275. erx|action_item:action_item_category='RX'|view|icon:file-signature
  276. erx/view/{uid}
  277. ACTIONS
  278. signAsPrescriber
  279. updateToFacility
  280. toFacilityUid:record:facility:uid,name
  281. updateContent
  282. contentText=content_text
  283. contentDetail=content_detail
  284. updateStatus
  285. statusCategory:select:OPEN,CLOSED
  286. statusMemo
  287. efax
  288. toFaxNumber:tel
  289. SUB
  290. dashboard
  291. audit_log
  292. action_items|action_item|view|icon:tasks
  293. action_items/view/{uid}
  294. ACTIONS
  295. signAsPrescriber
  296. updateToFacility
  297. toFacilityUid:record:facility:uid,name
  298. updateContent
  299. contentText=content_text
  300. contentDetail=content_detail
  301. updateStatus
  302. statusCategory:select:OPEN,CLOSED
  303. statusMemo
  304. efax
  305. toFaxNumber:tel
  306. SUB
  307. dashboard
  308. audit_log
  309. care_months|care_month|view|icon:calendar-plus
  310. care_months/view/{uid}
  311. ACTIONS
  312. putMcpPro
  313. mcpProUid:record:pro:uid,name_display
  314. putAllyPro
  315. allyProUid:record:pro:uid,name_display
  316. putReasons
  317. reason1
  318. reason2
  319. reason3
  320. reason3Plus
  321. setIsClientEnrolledInCmToTrue
  322. setIsClientEnrolledInCmToFalse
  323. updateWhyNotEnrolledInCm
  324. whyNotEnrolledInCmCategory
  325. whyNotEnrolledInCmMemo
  326. setIsClientEnrolledInRmToTrue
  327. setIsClientEnrolledInRmToFalse
  328. updateWhyNotEnrolledInRm
  329. whyNotEnrolledInRmCategory
  330. whyNotEnrolledInRmMemo
  331. generateBillForCm
  332. numberOfMinutes:number
  333. generateBillForRm
  334. numberOfMinutes:number
  335. setIsCmCanceledThisMonthToTrue
  336. updateWhyIsCmCanceledThisMonth
  337. setIsCmCanceledThisMonthToFalse
  338. setIsRmCanceledThisMonthToTrue
  339. updateWhyIsRmCanceledThisMonth
  340. setIsRmCanceledThisMonthToFalse
  341. setIsTmThisMonthToTrue
  342. setIsTmThisMonthToFalse
  343. SUB
  344. dashboard
  345. # :: need remove
  346. cm_time_entries
  347. id=care_month_entry.care_month_id,cm_or_rm='CM'
  348. add_new:care_month_entry:createForCm
  349. careMonthUid:hidden=uid
  350. proUid:record:pro:uid,name_display
  351. effectiveDate:date
  352. timeInSeconds:number
  353. isTimeSpecific:bool
  354. startingTime:time
  355. endingTime:time
  356. contentText
  357. contentDetail
  358. # :: need remove
  359. rm_time_entries
  360. id=care_month_entry.care_month_id,cm_or_rm='RM'
  361. add_new:care_month_entry:createForRm
  362. careMonthUid:hidden=uid
  363. proUid:record:pro:uid,name_display
  364. effectiveDate:date
  365. timeInSeconds:number
  366. isTimeSpecific:bool
  367. startingTime:time
  368. endingTime:time
  369. contentText
  370. contentDetail
  371. audit_log
  372. care_month_entries|care_month_entry|view|icon:calendar-alt
  373. care_month_entries/view/{uid}
  374. ACTIONS
  375. updateContent
  376. contentText
  377. contentDetail
  378. updateTiming
  379. effectiveDate
  380. timeInSeconds
  381. isTimeSpecific:bool
  382. startingTime
  383. endingTime
  384. SUB
  385. dashboard
  386. bills|bill|view|icon:file-invoice-dollar
  387. bills/view/{uid}
  388. ACTIONS
  389. payHcpAmount
  390. hcpPaymentAmount:number
  391. payHcpDifferentAmount
  392. differentHcpPaymentAmount:number
  393. signAsHcp
  394. markSubmitted
  395. putCollectedAmount
  396. collectedAmount
  397. SUB
  398. dashboard
  399. transactions
  400. id=pro_transaction.bill_id
  401. audit_log
  402. transactions|pro_transaction|icon:exchange-alt
  403. med_profile_lines|client_info_line|icon:window-restore
  404. med_profile_line_updates|client_info_line_update|icon:window-restore
  405. pro_access|client_pro_access|view|icon:arrow-alt-circle-right
  406. pro_access/view/{uid}
  407. ACTIONS
  408. updateReason
  409. reasonCategory=reason_category
  410. reasonDetail=reason_detail
  411. deactivate
  412. memo
  413. updateDeactivationMemo
  414. memo=deactivation_memo
  415. reactivate
  416. memo
  417. updateReactivationMemo
  418. memo=reactivation_memo
  419. SUB
  420. dashboard
  421. mcp_updates|client_mcp_update|icon:user-edit
  422. ally_updates|client_ally_update|icon:user-edit
  423. # audit_log :: coming soon
  424. ADMIN
  425. # admin_dashboard
  426. facilities|facility|view|icon:temperature-low
  427. facilities/add_new:create
  428. facilities/view/{uid}
  429. ACTIONS
  430. updateBasic
  431. name=name
  432. addressFull=address_full
  433. addressLine1=address_line1
  434. addressLine2=address_line2
  435. addressCity=address_city
  436. addressState=address_state
  437. addressZip=address_zip
  438. addressCountry=address_country
  439. addressGeoLat=address_geo_lat
  440. addressGeoLong=address_geo_long
  441. phone=phone
  442. fax=fax
  443. hours=hours
  444. deactivate
  445. memo
  446. updateDeactivationMemo
  447. memo=deactivation_memo
  448. reactivate
  449. memo
  450. updateReactivationMemo
  451. memo=reactivation_memo
  452. SUB
  453. dashboard
  454. erx
  455. action_items
  456. audit_log
  457. pros|pro|add|view|icon:user-md
  458. pros/add_new:create
  459. cellNumber:tel
  460. emailAddress:email
  461. nameDisplay
  462. namePrefix
  463. nameFirst
  464. nameMiddle
  465. nameLast
  466. nameSuffix
  467. nameCredential
  468. isHcp:bool
  469. hcpNpi
  470. previousProfessionCategory
  471. currentProfessionCategory
  472. pros/view/{uid}
  473. ACTIONS
  474. sendCellNumberConfirmationMessage
  475. confirmCellNumberWithConfirmationToken
  476. cellNumber:tel=cell_number
  477. token
  478. putNewCellNumber
  479. newCellNumber:tel=cell_number
  480. confirmEmailAddressWithConfirmationToken
  481. emailAddress:email=email_address
  482. token
  483. putNewEmailAddress
  484. newEmailAddress:email=email_address
  485. updateName
  486. nameDisplay
  487. namePrefix
  488. nameFirst
  489. nameMiddle
  490. nameLast
  491. nameSuffix
  492. nameCredential
  493. updateProfession
  494. isHcp:bool
  495. hcpNpi
  496. previousProfessionCategory
  497. currentProfessionCategory
  498. hcpCategory
  499. hcpSubcategory
  500. updateEnrolledHcpInfo
  501. enrolledHcpCategory
  502. enrolledHcpSubcategory
  503. enrolledHcpNpi
  504. putProfilePicture
  505. profilePictureBase64
  506. updatePhoneInfo
  507. homePhoneNumber
  508. workPhoneNumber
  509. supporterPhoneNumber
  510. supporterMemo
  511. phoneNumbersMemo
  512. updateAddress
  513. mailingAddressLine1
  514. mailingAddressLine2
  515. mailingAddressCity
  516. mailingAddressState
  517. mailingAddressCountry
  518. mailingAddressZip
  519. mailingAddressLat
  520. mailingAddressLong
  521. homeAddressLine1
  522. homeAddressLine2
  523. homeAddressCity
  524. homeAddressState
  525. homeAddressCountry
  526. homeAddressZip
  527. homeAddressLat
  528. homeAddressLong
  529. updatePaymentProcessingDetail
  530. paymentProcessingDetail
  531. uploadDriverLicense
  532. driverLicenseFilePath
  533. updateDriverLicenseInfo
  534. driverLicenseState
  535. driverLicenseIssueDate
  536. driverLicenseExpirationDate
  537. updateSsn
  538. ssn
  539. # new actions from ProService.java
  540. sendEmailAddressConfirmationMessage
  541. setIsEnrolledAsHcpToTrue
  542. setIsEnrolledAsHcpToFalse
  543. setIsEnrolledAsMcpToTrue
  544. setIsEnrolledAsMcpToFalse
  545. removeProfilePicture
  546. updateW9Detail
  547. w9Detail
  548. updateSignedContractPdf
  549. signedContractPdf
  550. setIsPaymentProcessingDetailCompleteToTrue
  551. setIsPaymentProcessingDetailCompleteToFalse
  552. setIsDriverLicenseCompleteToTrue
  553. setIsDriverLicenseCompleteToFalse
  554. setIsSsnCompleteToTrue
  555. setIsSsnCompleteToFalse
  556. SUB
  557. dashboard
  558. payment_schedule
  559. id=pro_rate.pro_id=>/pro_rates/view/UID
  560. add_new:pro_rate
  561. proUid:hidden=uid
  562. asHcpOrAlly:select:HCP,ALLY
  563. code
  564. amount:number
  565. teams
  566. clients
  567. pro_access
  568. mcp_updates
  569. ally_updates
  570. erx
  571. action_items
  572. care_months
  573. care_month_entries
  574. notes
  575. bills
  576. pro_transactions
  577. lobby_pros
  578. id=lobby_pro.pro_id=>/lobby_pros/view/UID
  579. add_new:lobby_pro
  580. proUid:hidden=uid
  581. lobbyUid:record:lobby:uid,name
  582. sessions
  583. audit_log
  584. pro_rates|pro_rate|view|icon:funnel-dollar
  585. pro_rates/view/{uid}
  586. ACTIONS
  587. updateAmount
  588. newAmount:number=amount
  589. SUB
  590. dashboard
  591. lobbies|lobby|add|view|icon:hospital
  592. lobbies/add_new:create
  593. name
  594. urlSlug
  595. isStrangerAccessible:boolean
  596. isClientAccessible:boolean
  597. lobbies/view/{uid}
  598. ACTIONS
  599. putName
  600. name
  601. putUrlSlug
  602. urlSlug
  603. setIsStrangerAccessibleToTrue
  604. setIsStrangerAccessibleToFalse
  605. setIsClientAccessibleToTrue
  606. setIsClientAccessibleToFalse
  607. SUB
  608. dashboard
  609. lobby_pros
  610. id=lobby_pro.lobby_id=>/lobby_pros/view/UID
  611. add_new:lobby_pro
  612. lobbyUid:hidden=uid
  613. proUid:record:pro:uid,name_display
  614. meetings
  615. id=meeting.lobby_id=>/meetings/view/UID
  616. meetings|meeting|add|view|icon:handshake
  617. meetings/add_new:meetings:createAsProPerformer
  618. lobbyUid:record:lobby:uid,name
  619. targetLobbyProUid:record:lobby_pro:uid,uid
  620. title
  621. name
  622. pictureBase64
  623. meetings/view/{uid}
  624. ACTIONS
  625. putLobby
  626. lobbyUid:record:lobby:uid,name
  627. putTargetLobbyPro
  628. lobbyUid:record:lobbyPro:uid,name
  629. putTitle
  630. title
  631. putStrangerInfo
  632. strangerFirstName
  633. strangerLastName
  634. strangerDob:date
  635. strangerMcn
  636. isStrangerMcnPpb:boolean
  637. strangerMcnDetail
  638. strangerSsn
  639. strangerDetail
  640. putMeetingNumber
  641. SUB
  642. dashboard
  643. meeting_participants
  644. id=meeting_participant.meeting_id=>/meeting_participants/view/UID
  645. add_new:meeting_participant:createForPro
  646. meetingUid:hidden=uid
  647. proUid:record:pro:uid,name_display
  648. name
  649. pictureBase64
  650. meeting_invitations
  651. id=meeting_invitation.meeting_id=>/meeting_invitations/view/UID
  652. add_new:meeting_invitation
  653. meetingUid:hidden=uid
  654. smsOrEmail:select:SMS,EMAIL
  655. toSms
  656. toEmail
  657. toName
  658. meeting_rings
  659. id=meeting_ring.meeting_id=>/meeting_rings/view/UID
  660. meeting_knocks
  661. id=meeting_knock.meeting_id=>/meeting_knocks/view/UID
  662. meeting_messages
  663. id=meeting_message.meeting_id=>/meeting_messages/view/UID
  664. meeting_participants|meeting_participant|view|icon:user
  665. meeting_participants/view/{uid}
  666. SUB
  667. dashboard
  668. meeting_invitations|meeting_invitation|view|icon:envelope
  669. meeting_invitations/view/{uid}
  670. ACTIONS
  671. cancel
  672. memo
  673. SUB
  674. dashboard
  675. meeting_rings|meeting_ring|view|icon:phone
  676. meeting_rings/view/{uid}
  677. SUB
  678. dashboard
  679. meeting_knocks|meeting_knock|view|icon:door-closed
  680. meeting_knocks/view/{uid}
  681. SUB
  682. dashboard
  683. meeting_messages|meeting_message|view|icon:comments
  684. meeting_message/view/{uid}
  685. SUB
  686. dashboard