diff --git a/profiles.js b/profiles.js
index 0cb3a55..abffbbd 100644
--- a/profiles.js
+++ b/profiles.js
@@ -168,5 +168,8 @@ function coverage() {
}
function adminList() { return Object.values(db.byId).map(pub).sort((a, b) => a.id - b.id); }
-module.exports = { init, get, pub, status, complete, isComplete, setUsername, byUsername, suggest,
+// local testing only: the server exposes this outside production, never on the live site
+function peekCode(id) { const st = codes.get(norm(id)); return st ? st.code : null; }
+
+module.exports = { init, get, pub, status, complete, isComplete, setUsername, byUsername, suggest, peekCode,
startEmail, verifyEmail, contactFor, setTelegram, positionsFor, coverage, adminList, ensure, USER_RE, EMAIL_RE };
diff --git a/public/my.html b/public/my.html
index cf2bf64..2fd125f 100644
--- a/public/my.html
+++ b/public/my.html
@@ -31,5 +31,5 @@
-
+