Generalized patch
function (plus a motivating example)
#209
Labels
Milestone
patch
function (plus a motivating example)
#209
I believe that it was my
update_success_email
function that got us (@patr1ckm and me) talking about a generalizedpatch
, so depending on whether we wanted to implement both a function to help users customize their success emails or just add a generalizedpatch
, this issue might map to two additional functions.update_success_email
is a specific function with the goal of customizing a success email, which can neatly be pointed to either a workflow (usingworkflows_patch
) or a script (usingscripts_patch
), and it might be a useful utility function.A (proposed)
patch
function would make use of bothworkflows_patch
andscripts_patch
to allow the user to patch a generalized platform object. In the minute of brainstorming we gave it, @patr1ckm and I weren't able to immediately think of a safe way to type-check the platform object given only an ID, but by asking for the object type (e.g.patch(id = 1234, type = "script", ...)
) we can avert the need.The text was updated successfully, but these errors were encountered: