(f, el, e, imageid)
| 245 | |
| 246 | |
| 247 | function processCaptionKey(f, el, e, imageid) { |
| 248 | const formData = new FormData(); |
| 249 | formData.append('caption', el.value); |
| 250 | |
| 251 | fetch(`set-image-caption/${imageid}`, { method: "POST", body: formData }); |
| 252 | } |
| 253 | |
| 254 | function processEmailChange(f, el, user) { |
| 255 | const formData = new FormData(); |
nothing calls this directly
no outgoing calls
no test coverage detected