()
| 174 | } |
| 175 | |
| 176 | function onOpen() { |
| 177 | var ui = SpreadsheetApp.getUi(); |
| 178 | ui.createMenu('Run Report') |
| 179 | .addItem('Refresh Data', 'fetchBigQueryData') |
| 180 | .addItem('Refresh Report and Data', 'generateReport') |
| 181 | .addItem('Refresh Report', 'formatReport') |
| 182 | .addItem('Authenticate', 'auth') |
| 183 | .addToUi(); |
| 184 | } |
| 185 | |
| 186 | function generateReport() { |
| 187 | auth(); |
nothing calls this directly
no outgoing calls
no test coverage detected