We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cfa11e7 commit 6eeca4dCopy full SHA for 6eeca4d
TrelloApp.gs
@@ -1,10 +1,8 @@
1
function doGet(e){
2
-
3
- var service = Authorizer_.getTrelloService();
4
- var authorizationUrl = service.authorize();
5
- var template = HtmlService.createTemplateFromFile('Authorize');
6
- template.authorizationUrl = authorizationUrl;
7
+ var service = Authorizer_.getTrelloService()
+ var authorizationUrl = service.authorize()
+ var template = HtmlService.createTemplateFromFile('Authorize')
+ template.authorizationUrl = authorizationUrl
8
var page = template.evaluate();
9
return HtmlService.createHtmlOutput(page)
10
}
0 commit comments