()
| 215 | } |
| 216 | |
| 217 | function onOpen() { |
| 218 | var ui = SpreadsheetApp.getUi(); |
| 219 | ui.createMenu('Run Report') |
| 220 | .addItem('Refresh Data', 'fetchBigQueryData') |
| 221 | .addItem('Refresh Report and Data', 'generateReport') |
| 222 | .addItem('Refresh Report', 'formatReport') |
| 223 | .addItem('Authenticate', 'auth') |
| 224 | .addToUi(); |
| 225 | } |
| 226 | |
| 227 | function generateReport() { |
| 228 | auth(); |
nothing calls this directly
no outgoing calls
no test coverage detected