()
| 106 | } |
| 107 | |
| 108 | function onOpen() { |
| 109 | var ui = SpreadsheetApp.getUi(); |
| 110 | ui.createMenu('Custom Menu') |
| 111 | .addItem('Refresh Data', 'generateReport') |
| 112 | .addToUi(); |
| 113 | } |
| 114 | |
| 115 | function generateReport() { |
| 116 | fetchBigQueryData(); |
nothing calls this directly
no outgoing calls
no test coverage detected