Cory McWilliams 89622697d5
Some checks failed
Build Tilde Friends / Build-All (push) Has been cancelled
intro: The default app is intro, and complete intro changes the default app to ssb.
2025-05-21 18:48:29 -04:00

14 lines
312 B
JavaScript

import * as tfrpc from '/tfrpc.js';
async function main() {
await app.setDocument(utf8Decode(getFile('index.html')));
}
tfrpc.register(async function complete() {
if ((await core.globalSettingsGet('index')) == '/~core/intro/') {
return await core.globalSettingsSet('index', '/~core/ssb/');
}
});
main();