(id)
| 14 | |
| 15 | export const prefillBlockColor = "transparent"; |
| 16 | export const prefillObj = (id) => { |
| 17 | const obj = { |
| 18 | Id: id || randomId(), |
| 19 | Role: "prefill", |
| 20 | Name: "Prefill by owner", |
| 21 | blockColor: prefillBlockColor |
| 22 | }; |
| 23 | |
| 24 | return obj; |
| 25 | }; |
| 26 | //funtion to use embed prefill details in documentAdd commentMore actions |
| 27 | export const handleEmbedPrefillToDoc = async ( |
| 28 | prefillDetails, |
nothing calls this directly
no test coverage detected