(formId: string)
| 71 | } |
| 72 | |
| 73 | export function buildSetPublishSettingsUrl(formId: string): string { |
| 74 | const finalUrl = `${FORMS_API_BASE}/forms/${encodeURIComponent(formId)}:setPublishSettings` |
| 75 | logger.debug('Built Google Forms set publish settings URL', { finalUrl }) |
| 76 | return finalUrl |
| 77 | } |
| 78 | |
| 79 | export function buildListWatchesUrl(formId: string): string { |
| 80 | const finalUrl = `${FORMS_API_BASE}/forms/${encodeURIComponent(formId)}/watches` |
no test coverage detected