Skip to content

Commit 9043399

Browse files
authored
revert(Code.gs): revert back HTML output i accidentally removed
1 parent 08b22bb commit 9043399

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

assets/apps_script/Code.gs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -239,6 +239,15 @@ function _respHeaders(resp) {
239239
return resp.getHeaders();
240240
}
241241

242+
function doGet(e) {
243+
return HtmlService.createHtmlOutput(
244+
"<!DOCTYPE html><html><head><title>My App</title></head>" +
245+
'<body style="font-family:sans-serif;max-width:600px;margin:40px auto">' +
246+
"<h1>Welcome</h1><p>This application is running normally.</p>" +
247+
"</body></html>"
248+
);
249+
}
250+
242251
function _json(obj) {
243252
return ContentService.createTextOutput(JSON.stringify(obj)).setMimeType(
244253
ContentService.MimeType.JSON

0 commit comments

Comments
 (0)