Scrub personal emails from example/reference files before going public

.env.example and gscript/Setup.js (the original Apps Script reference)
had real email addresses hardcoded as examples.
This commit is contained in:
Michal Pemcak
2026-08-16 18:40:20 +02:00
parent 94933cac5c
commit 04e2f83c29
2 changed files with 6 additions and 6 deletions

View File

@@ -121,8 +121,8 @@ function createSystemTriggers() {
}
function createMyAdmin() {
return seedFirstAdmin(
'filip.thurrigl@gmail.com',
'Philipp',
'Thürrigl'
'owner@example.com',
'First',
'Last'
);
}